Skip to content

Commit

Permalink
fix(ui): wizard attach pipeline doesn't list platforms (#3329)
Browse files Browse the repository at this point in the history
close #3325
Signed-off-by: Benjamin Coenen <benjamin.coenen@corp.ovh.com>
  • Loading branch information
bnjjj authored and sguiheux committed Sep 19, 2018
1 parent 9b78a97 commit d164bbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contrib/grpcplugins/deployment/arsenal/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ clean:
@rm -rf $(TARGET_DIR)

build: $(TARGET_DIR)
@echo "$$PLUGIN_MANIFEST" > $(TARGET_DIR)/plugin.yml
@cp $TARGET_NAME.yml $(TARGET_DIR)/plugin.yml
@for GOOS in $(TARGET_OS); do \
for GOARCH in $(TARGET_ARCH); do \
EXTENSION=""; \
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export class WorkflowNodeAddWizardComponent implements OnInit {
if (!this.node.context.application_id) {
return;
}
let app = this.project.application_names.find((a) => a.id === this.node.context.application_id);
let app = this.project.application_names.find((a) => a.id === Number(this.node.context.application_id));
if (!app) {
return;
}
Expand Down

0 comments on commit d164bbb

Please sign in to comment.