Skip to content

Commit

Permalink
fix label variable name
Browse files Browse the repository at this point in the history
  • Loading branch information
anthmatic committed Jan 8, 2021
1 parent 6a2b260 commit fec6f90
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/cms-cli/commands/create.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,9 +57,9 @@ const PROJECT_REPOSITORIES = {
const SUPPORTED_ASSET_TYPES = commaSeparatedValues(Object.values(TYPES));

const createModule = (moduleDefinition, name, dest) => {
const writeModuleMeta = ({ contentTypes, label, global }, dest) => {
const writeModuleMeta = ({ contentTypes, moduleLabel, global }, dest) => {
const metaData = {
label: label,
label: moduleLabel,
css_assets: [],
external_js: [],
global: global,
Expand Down

0 comments on commit fec6f90

Please sign in to comment.