Skip to content

Commit

Permalink
Fixed linting issues and tag indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jsaq007 committed Nov 22, 2023
1 parent 97745b7 commit 413faee
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,11 @@ qx.Class.define("osparc.dashboard.GridButtonBase", {
},
TSR: {
row: 2,
column: 0,
colSpan: 2
column: 0
},
HITS: {
row: 2,
column: 0,
colSpan: 2
column: 2
},
UPDATES: {
row: 0,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,10 @@ qx.Class.define("osparc.dashboard.GridButtonItem", {
break;
case "tags":
control = new qx.ui.container.Composite(new qx.ui.layout.Flow(5, 3)).set({
anonymous: true
anonymous: true,
paddingLeft: osparc.dashboard.GridButtonBase.PADDING,
paddingRight: osparc.dashboard.GridButtonBase.PADDING,
paddingBottom: osparc.dashboard.GridButtonBase.PADDING / 2
});
this._mainLayout.add(control, osparc.dashboard.GridButtonBase.POS.TAGS);
break;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ qx.Class.define("osparc.navigation.NavigationBar", {
this.set({
paddingLeft: 10,
paddingRight: 10,
height: this.self().HEIGHT,
height: this.self().HEIGHT
});
},

Expand Down Expand Up @@ -110,8 +110,8 @@ qx.Class.define("osparc.navigation.NavigationBar", {

__buildLayout: function() {
this.getContentElement().setStyles({
background: "navigation_bar_background_color",
background: "linear-gradient(0deg, rgba(1, 18, 26, 0.1) 0%, rgba(229, 229, 229, 0.1) 5%)"
"background-color": "navigation_bar_background_color",
"background": "linear-gradient(0deg, rgba(1, 18, 26, 0.1) 0%, rgba(229, 229, 229, 0.1) 5%)"
});
this.getChildControl("left-items");
this.getChildControl("center-items");
Expand Down

0 comments on commit 413faee

Please sign in to comment.