From 00cff8f773f050cbbeca154be8943a6abca3766c Mon Sep 17 00:00:00 2001 From: garrettmills Date: Sun, 6 Sep 2020 18:12:47 -0500 Subject: [PATCH] Fix number of rows and columns --- src/components/GameBoard.component.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/GameBoard.component.js b/src/components/GameBoard.component.js index 9668446..7cee4a8 100644 --- a/src/components/GameBoard.component.js +++ b/src/components/GameBoard.component.js @@ -54,13 +54,13 @@ export default class GameBoardComponent extends Component { * The number of rows in the grid. * @type {number} */ - n_rows = 14 + n_rows = 9 /** * The number of columns in a row. * @type {number} */ - n_cols = 14 + n_cols = 9 async vue_on_create() { // Generate the data structure for the grid