Skip to content

Commit

Permalink
Updated info message status colors
Browse files Browse the repository at this point in the history
  • Loading branch information
beverlyRoadGoose committed Aug 6, 2019
1 parent 77a0df4 commit bc45e74
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Change Log

##### v0.1.2 ~ 2019.08.06
- Corrected info message status colors

##### v0.1.1 ~ 2019.08.06
- Fixed 404 issue when resolving dashboard js script

Expand Down
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ plugins {
}

group = "me.tobiadeyinka.jenkinsci.plugins"
version = "0.1.1"
version = "0.1.2"
description = "A dashboard for monitoring the status of builds"

jenkinsPlugin {
Expand Down
6 changes: 3 additions & 3 deletions src/main/webapp/src/StatusColors.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
*/

let StatusColors = Object.freeze({
SUCCESS: '#E0F2E0',
ERROR: '#FFC6C3',
NORMAL:'#d2d2d2'
SUCCESS: '#BBE2BB',
ERROR: '#FFA39E',
NORMAL:'#C4C4C4'
});

export {StatusColors};
2 changes: 1 addition & 1 deletion src/main/webapp/src/components/board/BuildDashboard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<template>
<div id="dashboard">
<dashboard-header :resources-url="resourcesUrl" :board="board" :board-title="boardTitle"></dashboard-header>
<div id="info-box" class="transitions" v-bind:style="infoBoxStyleObject">{{this.informationMessage}}</div>
<div id="info-box" class="transitions" :style="infoBoxStyleObject">{{this.informationMessage}}</div>
<settings-widget :resources-url="resourcesUrl" :board="board"></settings-widget>

<div id="monitor-wrapper">
Expand Down

0 comments on commit bc45e74

Please sign in to comment.