Skip to content

Commit

Permalink
Merge pull request #50 from mountaindude/main
Browse files Browse the repository at this point in the history
fix: Show correct node status when tags have been deleted
  • Loading branch information
mountaindude authored Sep 9, 2023
2 parents 9dc5b9b + b9cd046 commit ef7702f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
5 changes: 2 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,10 @@

## [0.1.1](https://github.com/ptarmiganlabs/ctrl-q-nr/compare/v0.1.0...v0.1.1) (2023-09-09)


### Bug Fixes

* Handle Windows line breaks in tag/app/task editors ([fb54601](https://github.com/ptarmiganlabs/ctrl-q-nr/commit/fb54601ee1da117854f80046af4c0de27be36030)), closes [#46](https://github.com/ptarmiganlabs/ctrl-q-nr/issues/46)
* Set default auth type to API key when creating new tenant config ([34703a8](https://github.com/ptarmiganlabs/ctrl-q-nr/commit/34703a841072d33d6c3cf974f46f97e4e8b513fd)), closes [#44](https://github.com/ptarmiganlabs/ctrl-q-nr/issues/44)
- Handle Windows line breaks in tag/app/task editors ([fb54601](https://github.com/ptarmiganlabs/ctrl-q-nr/commit/fb54601ee1da117854f80046af4c0de27be36030)), closes [#46](https://github.com/ptarmiganlabs/ctrl-q-nr/issues/46)
- Set default auth type to API key when creating new tenant config ([34703a8](https://github.com/ptarmiganlabs/ctrl-q-nr/commit/34703a841072d33d6c3cf974f46f97e4e8b513fd)), closes [#44](https://github.com/ptarmiganlabs/ctrl-q-nr/issues/44)

## [0.1.0](https://github.com/ptarmiganlabs/ctrl-q-nr/compare/v0.0.6...v0.1.0) (2023-09-07)

Expand Down
2 changes: 1 addition & 1 deletion src/qseow/qseow-tag-nr.js
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ module.exports = function (RED) {
// Log success
node.log(`Deleted tags: ${outMsg1.payload.tagDeleted}`);
node.log(`Tags that did not exist on server: ${outMsg1.payload.tagNoExist}`);
node.status({ fill: 'green', shape: 'dot', text: 'tags created' });
node.status({ fill: 'green', shape: 'dot', text: 'tags deleted' });
} else {
// Invalid operation. Log error and return
node.error(`Invalid operation: ${node.op}`);
Expand Down

0 comments on commit ef7702f

Please sign in to comment.