Skip to content

Commit

Permalink
add todo ticket
Browse files Browse the repository at this point in the history
  • Loading branch information
mabaasit committed Nov 13, 2024
1 parent 51c3de3 commit da546b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions packages/compass/src/main/menu.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ describe('CompassMenu', function () {
]);
});

// TODO(COMPASS-XXXX): Add `linux` back to this list
// TODO(COMPASS-8505): Add `linux` back to this list
['win32'].forEach((platform) => {
// TODO(COMPASS-7906): remove
it.skip(`[single-connection] should generate a menu template for ${platform}`, function () {
Expand Down Expand Up @@ -589,7 +589,7 @@ describe('CompassMenu', function () {
});
});

// TODO(COMPASS-XXXX): Remove this test
// TODO(COMPASS-8505): Remove this test
it('should generate a menu template for linux', async function () {
await App.preferences.savePreferences({
enableMultipleConnectionSystem: true,
Expand Down
2 changes: 1 addition & 1 deletion packages/compass/src/main/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -712,7 +712,7 @@ class CompassMenu {
return darwinMenu(menuState, this.app);
}
const menu = nonDarwinMenu(menuState, this.app);
// TODO(COMPASS-XXXX): Remove this check once accelerator issue is resolve for linux.
// TODO(COMPASS-8505): Remove this check once accelerator issue is resolve for linux.
if (os.platform() === 'linux') {
return removeAcceleratorFromMenu(menu);
}
Expand Down

0 comments on commit da546b7

Please sign in to comment.