Settings
{#if electron}
Appearance
{ restartWarning = true; }} /> {#if restartWarning}
Native menu settings will be applied after app restart
{/if} {/if}
Data grid
SQL editor
({ label: mode.label, value: mode.value }))} value={$currentEditorKeybindigMode} on:change={e => ($currentEditorKeybindigMode = e.detail)} />
($currentEditorWrapEnabled = e.target.checked)} />
Connection
{ $lockedDatabaseMode = !$lockedDatabaseMode; }, }} > ($lockedDatabaseMode = e.target.checked)} />
Query sessions
Application theme
{#each $extensions.themes as theme} {/each}
More themes are available as plugins
After installing theme plugin (try search "theme" in available extensions) new themes will be available here.
Editor theme
({ label: theme, value: theme }))} value={$currentEditorTheme} on:change={e => ($currentEditorTheme = e.detail)} />
x.value == $currentEditorFontSize) ? $currentEditorFontSize : 'custom'} on:change={e => ($currentEditorFontSize = e.detail)} />
($currentEditorFontSize = e.target['value'])} disabled={!!FONT_SIZES.find(x => x.value == $currentEditorFontSize) && $currentEditorFontSize != 'custom'} />
Default actions
Confirmations
Other
License
{ licenseKeyCheckResult = await apiCall('config/check-license', { licenseKey: value }); }} /> {#if licenseKeyCheckResult}
{#if licenseKeyCheckResult.status == 'ok'}
License key is valid
{#if licenseKeyCheckResult.validTo}
License valid to: {licenseKeyCheckResult.validTo}
{/if} {#if licenseKeyCheckResult.expiration}
License key expiration: {safeFormatDate(licenseKeyCheckResult.expiration)}
{/if} {:else if licenseKeyCheckResult.status == 'error'} License key is invalid {/if}
{/if}