Skip to content

Commit e6fa7ce

Browse files
committed
build: fix demo deployment
The demo was being deployed from the wrong directory.
1 parent 47da9b6 commit e6fa7ce

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"builder": "angular-cli-ghpages:deploy",
8585
"options": {
8686
"buildTarget": "demo:build:production",
87-
"dir": "dist/demo"
87+
"dir": "dist/demo/browser"
8888
}
8989
}
9090
}

src/demo/app/demo.component.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ <h3>Customize!</h3>
8787
</div>
8888
<div class="cf">
8989
<label for="innerCircleFill">Inner circle fill color:</label>
90-
<input id="innerCircleFill" name="innerCircleFill" type="text" [(ngModel)]="innerCircleFill" />
90+
<input id="innerCircleFill" name="innerCircleFill" type="color" [(ngModel)]="innerCircleFill" />
9191
</div>
9292
</form>
9393
</div>

0 commit comments

Comments
 (0)