mirror of
https://github.com/windmill-labs/windmill.git
synced 2026-08-20 08:01:35 +00:00
fix(frontend): fix validity check (#5654)
This commit is contained in:
@@ -37,7 +37,7 @@
|
||||
function updateValidity(publication: PublicationData) {
|
||||
isValid =
|
||||
!emptyString(postgres_resource_path) &&
|
||||
(!publication.table_to_track || publication.table_to_track.length === 0)
|
||||
(!publication.table_to_track || publication.table_to_track.length !== 0)
|
||||
}
|
||||
|
||||
$: updateValidity(publication)
|
||||
|
||||
Reference in New Issue
Block a user