Skip to content

Commit

Permalink
For ticket #663, altering warning for name has been removed everywhere
Browse files Browse the repository at this point in the history
- Similar to #667 ticket, the altering warning for standard table's name has been removed.
- Also, it has been removed when altering counter tables and UDTs.
  • Loading branch information
mhmdkrmabd committed Feb 18, 2025
1 parent 7a018d9 commit e8fbbf9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions renderer/js/events/clusters.js
Original file line number Diff line number Diff line change
Expand Up @@ -13373,7 +13373,7 @@

$(this).attr('disabled', isAlterState ? '' : null)
$(this).parent().toggleClass('invalid-warning', isAlterState)
$(this).toggleClass('is-invalid ignore-invalid', isAlterState)
$(this).removeClass('is-invalid ignore-invalid')

try {
if (!isAlterState)
Expand Down Expand Up @@ -13796,7 +13796,7 @@

$(this).attr('disabled', isAlterState ? '' : null)
$(this).parent().toggleClass('invalid-warning', isAlterState)
$(this).toggleClass('is-invalid ignore-invalid', isAlterState)
$(this).removeClass('is-invalid ignore-invalid')

try {
if (!isAlterState)
Expand Down Expand Up @@ -16038,7 +16038,7 @@

$(this).attr('disabled', isAlterState ? '' : null)
$(this).parent().toggleClass('invalid-warning', isAlterState)
$(this).toggleClass('is-invalid ignore-invalid', isAlterState)
$(this).removeClass('is-invalid ignore-invalid')

try {
if (!isAlterState)
Expand Down

0 comments on commit e8fbbf9

Please sign in to comment.