(action: MainMenuPrimaryAction)
| 274 | ] |
| 275 | |
| 276 | function getPrimaryActionLabel(action: MainMenuPrimaryAction) { |
| 277 | if (action === 'new-snippet') |
| 278 | return i18n.t('action.new.snippet') |
| 279 | if (action === 'new-note') |
| 280 | return i18n.t('action.new.note') |
| 281 | if (action === 'new-sheet') |
| 282 | return i18n.t('spaces.math.newSheet') |
| 283 | return '' |
| 284 | } |
| 285 | |
| 286 | function createPrimaryActionClick(action: MainMenuPrimaryAction) { |
| 287 | if (action === 'new-snippet') { |
no outgoing calls
no test coverage detected