We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2ff7e9 commit 1c1e540Copy full SHA for 1c1e540
src/js/common.js
@@ -213,8 +213,9 @@ function initializeSavedLists(){
213
window.imTableConstraint["savedList"] = window.imTableConstraint[
214
"savedList"
215
].filter(title => title !== el.textContent);
216
- }
217
- else {
+ } else if(window.imTableConstraint['savedList'].length === 13) {
+ window.alert('You can only select a max of 13 List Contraints')
218
+ } else {
219
el.dataset.listConstraintActive = "true";
220
el.classList.add('active');
221
var listName = el.textContent;
0 commit comments