Browse Source

fix(nc-gui): view page title udpate issue (#9056)

pull/7305/merge
Ramesh Mane 4 months ago committed by GitHub
parent
commit
a4544f6b5b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 5
      packages/nc-gui/store/views.ts

5
packages/nc-gui/store/views.ts

@ -421,8 +421,11 @@ export const useViewsStore = defineStore('viewsStore', () => {
watch(
() => [activeView.value?.title, activeView.value?.id],
() => {
refreshViewTabTitle.trigger()
updateTabTitle()
},
{
flush:'post'
}
)
return {

Loading…
Cancel
Save