Apply 3 suggestion(s) to 2 file(s)
This commit is contained in:
parent
b580503c1a
commit
05eda7c50a
@ -19,7 +19,7 @@ export class CheckRange {
|
||||
|
||||
constructor(element) {
|
||||
if(!element) {
|
||||
throw new Error('Check All Utility cannot be setup without an element');
|
||||
throw new Error('Check Range Utility cannot be setup without an element');
|
||||
}
|
||||
|
||||
this._element = element;
|
||||
@ -39,6 +39,7 @@ export class CheckRange {
|
||||
}
|
||||
|
||||
_setUpShiftClickOnColumn(columnId) {
|
||||
if (!this._columns || columnId < 0 || columnId >= this._columns.length) return;
|
||||
let column = this._columns[columnId];
|
||||
let language = document.documentElement.lang;
|
||||
let toolTipMessage = Translations.getTranslation('checkrangeTooltip', language);
|
||||
|
||||
2
testdata/workflows
vendored
2
testdata/workflows
vendored
@ -1 +1 @@
|
||||
Subproject commit cf7dcf58c524176bbdd27ff279d68a5ab90cd06e
|
||||
Subproject commit c7301b6ed58b53be21199e4493cf791e7e91c4fd
|
||||
Reference in New Issue
Block a user