Skip to content

Commit

Permalink
Fix reversed labels for star favourite
Browse files Browse the repository at this point in the history
  • Loading branch information
krassowski committed May 17, 2024
1 parent 70e4028 commit 906eac8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/table.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,8 +230,8 @@ export function KernelTable(props: {
renderCell: (row: IKernelItem) => {
const starred = row.starred;
const title = starred
? trans.__('Click to add this kernel to favourites')
: trans.__('Click to remove the kernel from favourites');
? trans.__('Click to remove the kernel from favourites')
: trans.__('Click to add this kernel to favourites');
return (
<button
className={
Expand Down

0 comments on commit 906eac8

Please sign in to comment.