

Locate the line:
"showCaption": <?php /* @escapeNotVerified */ echo $block->getVar("gallery/caption"); ?>,
and replace it with the following one:
"showCaption": <?php echo intval($block->getVar("gallery/caption")); ?>,
Locate the line:
"showCaption": <?php /* @escapeNotVerified */  echo $block->getVar("gallery/fullscreen/caption"); ?>,
and replace it with the following one:
"showCaption": <?php echo intval($block->getVar("gallery/fullscreen/caption")); ?>,
Locate the line:
"arrows": <?php /* @escapeNotVerified */  echo $block->getVar("gallery/fullscreen/arrows"); ?>,
and replace it with the following one:
"arrows": <?php echo intval($block->getVar("gallery/fullscreen/arrows")); ?>,