()
| 528 | } |
| 529 | |
| 530 | export function getAlwaysOpenInEditor(): boolean { |
| 531 | try { |
| 532 | const raw = localStorageGetItem(LOCAL_STORAGE_ALWAYS_OPEN_IN_EDITOR); |
| 533 | return raw === 'true'; |
| 534 | } catch (error) {} |
| 535 | return false; |
| 536 | } |
| 537 | |
| 538 | type ParseElementDisplayNameFromBackendReturn = { |
| 539 | formattedDisplayName: string | null, |
no test coverage detected