Skip to content

Commit 8f6670d

Browse files
committed
fix alerts
1 parent 5a21745 commit 8f6670d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

lib/reducers/alert/index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,16 @@ var _types_1 = require('../../actions/_types');
33
var _alert = {
44
message: '',
55
open: false,
6-
action: 'note',
6+
action: 'NOTE',
77
duration: 1500,
88
};
99
var open = {
1010
open: true,
11-
action: 'note',
11+
action: 'NOTE',
1212
duration: 1500
1313
};
1414
var colors = {
15-
pass: '#73C990',
15+
PASS: '#73C990',
1616
FAIL: '#FF4081',
1717
NOTE: '#9DA5B4',
1818
};

src/reducers/alert/index.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ import {
66
const _alert: CR.Alert = {
77
message: '',
88
open: false,
9-
action: 'note',
9+
action: 'NOTE',
1010
duration: 1500,
1111
};
1212

1313
const open = {
1414
open: true,
15-
action: 'note',
15+
action: 'NOTE',
1616
duration: 1500
1717
};
1818

1919
const colors = {
20-
pass: '#73C990',
20+
PASS: '#73C990',
2121
FAIL: '#FF4081',
2222
NOTE: '#9DA5B4',
2323
};

0 commit comments

Comments
 (0)