Skip to content

Commit

Permalink
Twitterの代替ドメインの設定UIを調整
Browse files Browse the repository at this point in the history
  • Loading branch information
mei23 committed Oct 22, 2023
1 parent 62e46ce commit 652a5e1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/client/app/common/views/components/settings/settings.vue
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
</ui-select>

<header>{{ $t('@._settings.nitter') }}</header>
<ui-input v-model="nitter">
<ui-input v-model="nitter" :debounce="true">
</ui-input>
</section>

Expand Down Expand Up @@ -589,7 +589,10 @@ export default Vue.extend({
nitter: {
get() { return this.$store.state.device.nitter; },
set(value: string) { this.$store.commit('device/set', { key: 'nitter', value: value.trim() }); }
set(value: string) {
this.$store.commit('device/set', { key: 'nitter', value: value.trim() });
this.$notify(this.$t('@._settings.saved'));
}
},
roomUseOrthographicCamera: {
Expand Down

0 comments on commit 652a5e1

Please sign in to comment.