Skip to content

Commit 572addb

Browse files
committed
fix
1 parent 38e8b04 commit 572addb

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

services/static-webserver/client/source/class/osparc/jobs/RunsTable.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -159,6 +159,8 @@ qx.Class.define("osparc.jobs.RunsTable", {
159159

160160
__handleButtonClick: function(action, row) {
161161
this.resetSelection();
162+
// In order to make the button tappable again, the cell needs to be unfocused (blurred)
163+
this.resetCellFocus();
162164
const rowData = this.getTableModel().getRowData(row);
163165
switch (action) {
164166
case "info": {

services/static-webserver/client/source/class/osparc/jobs/SubRunsTable.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,8 @@ qx.Class.define("osparc.jobs.SubRunsTable", {
146146

147147
__handleButtonClick: function(action, row) {
148148
this.resetSelection();
149+
// In order to make the button tappable again, the cell needs to be unfocused (blurred)
150+
this.resetCellFocus();
149151
const rowData = this.getTableModel().getRowData(row);
150152
switch (action) {
151153
case "info": {

0 commit comments

Comments
 (0)