Skip to content

Commit de8cca1

Browse files
committed
Purchasing updates
1 parent 49c6780 commit de8cca1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

laboratory/resources/web/laboratory/window/ChangeAssayResultStatusWindow.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ Ext4.define('Laboratory.window.ChangeAssayResultStatusWindow', {
88
buttonHandler: function(dataRegionName, schemaName, queryName){
99
var dataRegion = LABKEY.DataRegions[dataRegionName];
1010
if (!dataRegion || !dataRegion.getChecked() || !dataRegion.getChecked().length){
11-
Ext4.Msg.alert('Error', '');
11+
Ext4.Msg.alert('Error', 'No rows selected');
1212
return;
1313
}
1414

1515
LDK.Assert.assertTrue('DataRegion not suitable for ChangeAssayResultStatusWindow for: ' + LDK.DataRegionUtils.getDisplayName(dataRegion), (dataRegion.pkCols && dataRegion.pkCols.length == 1));
16-
if (dataRegion.pkCols.length != 1){
16+
if (dataRegion.pkCols.length !== 1){
1717
Ext4.Msg.alert('Error', 'This button cannot be used with this table');
1818
return;
1919
}

0 commit comments

Comments
 (0)