This commit is contained in:
Vincent Fiduccia 2021-01-15 12:51:22 -07:00
parent 1fbe9df5de
commit f726aaf638
No known key found for this signature in database
GPG Key ID: 2B29AD6BB2BB2582
3 changed files with 1 additions and 2 deletions

View File

@ -116,7 +116,6 @@ export default {
watch: { watch: {
credentialId(val) { credentialId(val) {
console.log('here');
if ( val ) { if ( val ) {
this.credential = this.$store.getters['management/byId'](SECRET, this.credentialId); this.credential = this.$store.getters['management/byId'](SECRET, this.credentialId);

View File

@ -63,7 +63,7 @@ export function parse(labelSelector) {
out.push({ out.push({
key: match[1].trim(), key: match[1].trim(),
operator: match[2].toLowerCase().replace(/\s/g, '') === 'notin' ? 'NotIn' : 'In', operator: match[2].toLowerCase().replace(/\s/g, '') === 'notin' ? 'NotIn' : 'In',
values: [parens[match[4].trim()]], values: parens[match[4].trim()],
}); });
continue; continue;