Skip to content

Commit ea413c4

Browse files
committed
rename file
1 parent 9bb1e72 commit ea413c4

File tree

2 files changed

+5
-10
lines changed

2 files changed

+5
-10
lines changed

services/static-webserver/client/source/class/osparc/dashboard/ContainerHeader.js renamed to services/static-webserver/client/source/class/osparc/dashboard/ContextBreadcrumbs.js

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,7 @@
1515
1616
************************************************************************ */
1717

18-
/**
19-
* Widget used for displaying a New Folder in the Study Browser
20-
*
21-
*/
22-
23-
qx.Class.define("osparc.dashboard.ContainerHeader", {
18+
qx.Class.define("osparc.dashboard.ContextBreadcrumbs", {
2419
extend: qx.ui.core.Widget,
2520

2621
construct: function() {
@@ -40,19 +35,19 @@ qx.Class.define("osparc.dashboard.ContainerHeader", {
4035
check: "Number",
4136
nullable: true,
4237
init: null,
43-
apply: "__buildBreadcrumbs"
38+
apply: "__rebuild"
4439
},
4540

4641
currentFolderId: {
4742
check: "Number",
4843
nullable: true,
4944
init: null,
50-
apply: "__buildBreadcrumbs"
45+
apply: "__rebuild"
5146
}
5247
},
5348

5449
members: {
55-
__buildBreadcrumbs: function() {
50+
__rebuild: function() {
5651
this._removeAll();
5752

5853
if (this.getCurrentFolderId()) {

services/static-webserver/client/source/class/osparc/dashboard/ResourceContainerManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ qx.Class.define("osparc.dashboard.ResourceContainerManager", {
3232
this.__resourcesList = [];
3333
this.__groupedContainersList = [];
3434

35-
const containerHeader = this.__containerHeader = new osparc.dashboard.ContainerHeader();
35+
const containerHeader = this.__containerHeader = new osparc.dashboard.ContextBreadcrumbs();
3636
this._add(containerHeader);
3737
containerHeader.setVisibility(osparc.utils.DisabledPlugins.isFoldersEnabled() ? "visible" : "excluded");
3838

0 commit comments

Comments
 (0)