diff --git a/ui/modules/environments/authorization.html b/ui/modules/environments/authorization.html index c0e2b7051f..812bece795 100644 --- a/ui/modules/environments/authorization.html +++ b/ui/modules/environments/authorization.html @@ -23,17 +23,17 @@
Main authentication

- +
- +
- +
@@ -45,13 +45,13 @@
Main authentication
- +
- +
@@ -71,29 +71,29 @@
DevOps authentication

- +
- +
- +
- +
- +
diff --git a/ui/modules/things/things.html b/ui/modules/things/things.html index 562133a6dc..230b26b78b 100644 --- a/ui/modules/things/things.html +++ b/ui/modules/things/things.html @@ -14,30 +14,31 @@
-
+
- - - - -
+
diff --git a/ui/modules/utils.ts b/ui/modules/utils.ts index bcb1de07ba..f55cab12a2 100644 --- a/ui/modules/utils.ts +++ b/ui/modules/utils.ts @@ -14,7 +14,7 @@ /* eslint-disable quotes */ import autoComplete from '@tarekraafat/autocomplete.js'; import * as ace from 'ace-builds/src-noconflict/ace'; -import {Toast, Modal} from 'bootstrap'; +import { Modal, Toast } from 'bootstrap'; const dom = { @@ -65,6 +65,7 @@ export const addTableRow = function(table, key, selected, withClipBoardCopy = fa export function addCheckboxToRow(row, id, checked, onToggle) { const td = row.insertCell(0); td.style.verticalAlign = 'middle'; + td.style.width = '25px'; const checkBox = document.createElement('input'); checkBox.type = 'checkbox'; checkBox.id = id;