Skip to content
Original file line number Diff line number Diff line change
Expand Up @@ -249,6 +249,14 @@ export class DatasetDetailsDashboardComponent
}
}
break;
case TAB.logbook:
{
const { loaded } = this.fetchDataActions[TAB.logbook];
if (!loaded) {
this.fetchDataActions[TAB.logbook].loaded = true;
}
}
break;
default: {
const { action, loaded } = this.fetchDataActions[tab];
if (!loaded) {
Expand Down
Loading