diff --git a/features/musicList/src/main/ets/components/ListContent.ets b/features/musicList/src/main/ets/components/ListContent.ets index 9a5ebc3058af64c3f8b0d7844794e9ba168415fc..708128c02546cbeda431ed98150ea5442ddeed00 100644 --- a/features/musicList/src/main/ets/components/ListContent.ets +++ b/features/musicList/src/main/ets/components/ListContent.ets @@ -22,7 +22,17 @@ export struct Content { @StorageProp('currentBreakpoint') currentBreakpoint: string = BreakpointConstants.BREAKPOINT_SM; build() { - GridRow() { + GridRow({ + breakpoints: { + value: BreakpointConstants.BREAKPOINT_VALUE, + reference: BreakpointsReference.WindowSize + }, + columns: { + sm: BreakpointConstants.COLUMN_LG, + md: BreakpointConstants.COLUMN_LG, + lg: BreakpointConstants.COLUMN_LG + } + }) { GridCol({ span: { sm: GridConstants.SPAN_TWELVE, md: GridConstants.SPAN_SIX, lg: GridConstants.SPAN_FOUR } }) { AlbumCover({ currentBreakpoint: this.currentBreakpoint }) }