Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found
Select Git revision

Target

Select target project
  • coscine/frontend/apps/ui
1 result
Select Git revision
Show changes
Commits on Source (3)
{
"name": "ui",
"version": "2.12.4",
"version": "2.12.5",
"scripts": {
"dev": "vite",
"build": "vite build",
......
......@@ -302,6 +302,13 @@ export default defineComponent({
methods: {
async fetchData() {
if (this.project?.id && this.resource?.id) {
// Load resource
await this.resourceStore.retrieveResource(
this.project?.id,
this.resource?.id,
);
}
// Load Project Visibilities if not present
if (this.projectStore.visibilities === null) {
await this.projectStore.retrieveVisibilities();
......