Minor variable naming change
This commit is contained in:
parent
0d6f1969ed
commit
6511664ba3
|
@ -17,7 +17,7 @@ module.exports = ( { core } ) => {
|
||||||
dateStyle: 'full',
|
dateStyle: 'full',
|
||||||
} ).format( Date.now() );
|
} ).format( Date.now() );
|
||||||
|
|
||||||
const block = [
|
const blocks = [
|
||||||
{
|
{
|
||||||
type: 'divider',
|
type: 'divider',
|
||||||
},
|
},
|
||||||
|
@ -71,7 +71,7 @@ module.exports = ( { core } ) => {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
return block;
|
return blocks;
|
||||||
};
|
};
|
||||||
|
|
||||||
const create_blockGroup_nightlySite = () => {
|
const create_blockGroup_nightlySite = () => {
|
||||||
|
@ -79,7 +79,7 @@ module.exports = ( { core } ) => {
|
||||||
const emoji_E2E = selectEmoji( E2E_RESULT );
|
const emoji_E2E = selectEmoji( E2E_RESULT );
|
||||||
const emoji_k6 = selectEmoji( k6_RESULT );
|
const emoji_k6 = selectEmoji( k6_RESULT );
|
||||||
|
|
||||||
const block = [
|
const blocks = [
|
||||||
{
|
{
|
||||||
type: 'section',
|
type: 'section',
|
||||||
text: {
|
text: {
|
||||||
|
@ -101,7 +101,7 @@ module.exports = ( { core } ) => {
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
return block;
|
return blocks;
|
||||||
};
|
};
|
||||||
|
|
||||||
const blockGroup_header = create_blockGroup_header();
|
const blockGroup_header = create_blockGroup_header();
|
||||||
|
|
Loading…
Reference in New Issue