[backend/razor] Use ReloadPage() base class method instead of Navigation.Refresh in MetadataPage

This commit is contained in:
Laura Hausmann 2024-10-11 19:24:58 +02:00
parent 95da1dd59d
commit c72aa17056
No known key found for this signature in database
GPG key ID: D044E84C5BE01605

View file

@ -65,6 +65,6 @@
await Meta.Set(MetaEntity.InstanceDescription, Model.Description);
await Meta.Set(MetaEntity.AdminContactEmail, Model.AdminContact);
Navigation.Refresh(true);
ReloadPage();
}
}