Skip to content

Commit

Permalink
Added system name field to settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mecha-cat committed Jun 14, 2024
1 parent 04bf5f8 commit c427c4b
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions src/views/options/SystemSettings.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<script setup lang="ts">
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonBackButton, IonAvatar, IonButton, IonIcon, IonFab, IonFabButton, IonItem, useIonRouter} from '@ionic/vue';
import { IonContent, IonHeader, IonList, IonPage, IonTitle, IonToolbar, IonBackButton, IonAvatar, IonButton, IonIcon, IonInput, IonFab, IonFabButton, IonItem, useIonRouter} from '@ionic/vue';
import { inject, onMounted, ref } from 'vue';
import { getBlobURL } from '../../lib/util/blob';
import { getFiles } from '../../lib/util/misc';
Expand Down Expand Up @@ -70,8 +70,8 @@
</IonFab>
<IonList :inset="isIOS">
<IonItem>
<IonInput fill="outline" labelPlacement="floating" :label="$t('options:systemSettings.systemName')" v-model="system.name" />
</IonItem>
</IonList>
</IonContent>
</IonPage>
Expand Down Expand Up @@ -101,4 +101,8 @@ div.avatar-container {
right: 8px;
}
ion-input {
margin-top: 16px;
}
</style>

0 comments on commit c427c4b

Please sign in to comment.