@@ -28,7 +28,7 @@ import {
2828 Section ,
2929 TemplatePlotGroup ,
3030 TemplatePlotsData ,
31- DEFAULT_NB_ITEMS_PER_REOW
31+ DEFAULT_NB_ITEMS_PER_ROW
3232} from 'dvc/src/plots/webview/contract'
3333import {
3434 MessageFromWebviewType ,
@@ -263,7 +263,7 @@ describe('App', () => {
263263 checkpoint : null ,
264264 comparison : {
265265 height : undefined ,
266- nbItemsPerRow : DEFAULT_NB_ITEMS_PER_REOW ,
266+ nbItemsPerRow : DEFAULT_NB_ITEMS_PER_ROW ,
267267 plots : [
268268 {
269269 path : 'training/plots/images/misclassified.jpg' ,
@@ -1673,7 +1673,7 @@ describe('App', () => {
16731673 it ( 'should wrap the checkpoint plots in a big grid (virtualize them) when there are more than fourteen regular plots' , async ( ) => {
16741674 await renderAppAndChangeSize (
16751675 { checkpoint : createCheckpointPlots ( 15 ) } ,
1676- DEFAULT_NB_ITEMS_PER_REOW ,
1676+ DEFAULT_NB_ITEMS_PER_ROW ,
16771677 Section . CHECKPOINT_PLOTS
16781678 )
16791679
@@ -1683,7 +1683,7 @@ describe('App', () => {
16831683 it ( 'should not wrap the checkpoint plots in a big grid (virtualize them) when there are fourteen regular plots' , async ( ) => {
16841684 await renderAppAndChangeSize (
16851685 { checkpoint : createCheckpointPlots ( 14 ) } ,
1686- DEFAULT_NB_ITEMS_PER_REOW ,
1686+ DEFAULT_NB_ITEMS_PER_ROW ,
16871687 Section . CHECKPOINT_PLOTS
16881688 )
16891689
@@ -1693,7 +1693,7 @@ describe('App', () => {
16931693 it ( 'should wrap the template plots in a big grid (virtualize them) when there are more than fourteen regular plots' , async ( ) => {
16941694 await renderAppAndChangeSize (
16951695 { template : manyTemplatePlots ( 15 ) } ,
1696- DEFAULT_NB_ITEMS_PER_REOW ,
1696+ DEFAULT_NB_ITEMS_PER_ROW ,
16971697 Section . TEMPLATE_PLOTS
16981698 )
16991699
@@ -1703,7 +1703,7 @@ describe('App', () => {
17031703 it ( 'should not wrap the template plots in a big grid (virtualize them) when there are fourteen or fewer regular plots' , async ( ) => {
17041704 await renderAppAndChangeSize (
17051705 { template : manyTemplatePlots ( 14 ) } ,
1706- DEFAULT_NB_ITEMS_PER_REOW ,
1706+ DEFAULT_NB_ITEMS_PER_ROW ,
17071707 Section . TEMPLATE_PLOTS
17081708 )
17091709
@@ -1717,7 +1717,7 @@ describe('App', () => {
17171717 beforeEach ( async ( ) => {
17181718 store = await renderAppAndChangeSize (
17191719 { checkpoint } ,
1720- DEFAULT_NB_ITEMS_PER_REOW ,
1720+ DEFAULT_NB_ITEMS_PER_ROW ,
17211721 Section . CHECKPOINT_PLOTS
17221722 )
17231723 } )
0 commit comments