File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ const messages = defineMessages({
88export const ALERT_SHOW = 'ALERT_SHOW' ;
99export const ALERT_DISMISS = 'ALERT_DISMISS' ;
1010export const ALERT_CLEAR = 'ALERT_CLEAR' ;
11+ export const ALERT_NOOP = 'ALERT_NOOP' ;
1112
1213export function dismissAlert ( alert ) {
1314 return {
@@ -36,7 +37,7 @@ export function showAlertForError(error) {
3637
3738 if ( status === 404 || status === 410 ) {
3839 // Skip these errors as they are reflected in the UI
39- return { } ;
40+ return { type : ALERT_NOOP } ;
4041 }
4142
4243 let message = statusText ;
Original file line number Diff line number Diff line change @@ -3075,6 +3075,10 @@ a.status-card.compact:hover {
30753075 display : flex ;
30763076}
30773077
3078+ .column-header__links {
3079+ margin-bottom : 14px ;
3080+ }
3081+
30783082.column-header__links .text-btn {
30793083 margin-right : 10px ;
30803084}
You can’t perform that action at this time.
0 commit comments