File tree Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ import {
19
19
getSiteBlocksLastPage ,
20
20
} from 'calypso/state/reader/site-blocks/selectors' ;
21
21
import SiteBlockListItem from './list-item' ;
22
- import SiteBlockListItemPlaceholder from './list-item-placeholder' ;
23
22
24
23
import './style.scss' ;
25
24
@@ -36,7 +35,13 @@ class SiteBlockList extends Component {
36
35
37
36
renderPlaceholders ( ) {
38
37
return times ( 2 , ( i ) => (
39
- < SiteBlockListItemPlaceholder key = { 'site-block-list-item-placeholder-' + i } />
38
+ < div
39
+ aria-hidden = "true"
40
+ className = "site-blocks__list-item is-placeholder"
41
+ key = { 'site-block-list-item-placeholder-' + i }
42
+ >
43
+ < span className = "site-blocks__list-item-placeholder-text" > Blocked site</ span >
44
+ </ div >
40
45
) ) ;
41
46
}
42
47
You can’t perform that action at this time.
0 commit comments