소스 검색

Fix changing swimlane color to not reload webpage.

Thanks to xet7 !
Lauri Ojansivu 1 개월 전
부모
커밋
ecf2418347
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      client/components/swimlanes/swimlaneHeader.js

+ 5 - 0
client/components/swimlanes/swimlaneHeader.js

@@ -178,6 +178,11 @@ BlazeComponent.extendComponent({
   events() {
     return [
       {
+        'submit form'(event) {
+          event.preventDefault();
+          this.currentSwimlane.setColor(this.currentColor.get());
+          Popup.back();
+        },
         'click .js-palette-color'() {
           this.currentColor.set(this.currentData().color);
         },