mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-04 04:56:49 +00:00
Merge branch 'feat/dashboard' into feat/dashboard-accessibility
This commit is contained in:
commit
a2d500e536
1 changed files with 5 additions and 3 deletions
|
|
@ -26,9 +26,9 @@
|
|||
|
||||
if (savedSettings) {
|
||||
settings = {...settings, ...savedSettings}
|
||||
};
|
||||
}
|
||||
|
||||
let descriptions = apiConfig.description_templates;
|
||||
let descriptions = apiConfig?.description_templates;
|
||||
|
||||
async function saveDescriptionTemplates() {
|
||||
const res = await api().systems("@me").settings.patch({ data: { description_templates: descriptions } });
|
||||
|
|
@ -95,6 +95,7 @@
|
|||
</Card>
|
||||
</Col>
|
||||
</Row>
|
||||
{#if apiConfig}
|
||||
<Row>
|
||||
<Col class="mx-auto" xs={12} lg={11} xl={10}>
|
||||
<Card class="mb-4">
|
||||
|
|
@ -121,6 +122,7 @@
|
|||
</Card>
|
||||
</Col>
|
||||
</Row>
|
||||
{/if}
|
||||
</Container>
|
||||
|
||||
<svelte:head>
|
||||
|
|
@ -131,4 +133,4 @@
|
|||
textarea {
|
||||
resize: none;
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue