Skip to content

Commit

Permalink
chore: Migrate title to name
Browse files Browse the repository at this point in the history
Signed-off-by: Christopher Ng <chrng8@gmail.com>
  • Loading branch information
Pytal committed Jun 7, 2024
1 parent 6cfbd4a commit 7ccd90c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/GuestList.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<NcSettingsSection :title="t('guests', 'Guests accounts')">
<NcSettingsSection :name="t('guests', 'Guests accounts')">
<div v-if="loaded && !error">
<table v-if="guests.length" class="table">
<thead>
Expand Down
2 changes: 1 addition & 1 deletion src/views/GuestForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<NcModal v-if="isOpened"
id="app-guests"
:clear-view-delay="0"
:title="formatTitle"
:name="formatTitle"
@close="closeModal">
<!-- Main guest form -->
<div class="guest_model_content">
Expand Down
2 changes: 1 addition & 1 deletion src/views/GuestSettings.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<NcSettingsSection :title="t('guests', 'Guests')"
<NcSettingsSection :name="t('guests', 'Guests')"
:description="t('guests', 'Guest accounts are grouped under a virtual group in the account manager')">
<div>
<span v-if="error || saving || saved"
Expand Down

0 comments on commit 7ccd90c

Please sign in to comment.