Skip to content

Commit 144cbf6

Browse files
committed
build
1 parent 974b74d commit 144cbf6

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

dist/MLB.js

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ __webpack_require__.a(module, async (__webpack_handle_async_dependencies__) => {
3636

3737

3838

39-
const scriptVersion = 3;
39+
const scriptVersion = 4;
4040
const sourceRepo = "evandcoleman/scriptable";
4141
const scriptName = "MLB";
4242

@@ -156,7 +156,9 @@ async function createExpandedWidget() {
156156
outsStack.layoutHorizontally();
157157
const outImages = getOutsImages(game);
158158
for (let index in outImages) {
159-
outsStack.addSpacer(index == 0 ? null : index === 2 ? 0 : 12);
159+
if (index > 0) {
160+
outsStack.addSpacer(index == 0 ? null : index === 2 ? 0 : 12);
161+
}
160162
const widgetImage = outsStack.addImage(outImages[index]);
161163
widgetImage.imageSize = new Size(6, 6);
162164
}

0 commit comments

Comments
 (0)