Skip to content

Commit 3a03fe8

Browse files
committed
Corrected publish jobs
1 parent c588843 commit 3a03fe8

File tree

8 files changed

+24
-11
lines changed

8 files changed

+24
-11
lines changed

src/Server/Coderr.Server.Web/ClientApp/components/discover/incidents/search.vue.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@
8282
<div v-if="incidents.length > 0">
8383
<div class="col">
8484
<div v-show="isLoading" class="loading">
85-
<img src="/images/symbol.png" width="128" height="128" />
85+
<img src="images/symbol.png" width="128" height="128" />
8686
</div>
8787

8888
<table class="table w-100 table-striped checkboxes" id="searchTable" style="table-layout: fixed">

src/Server/Coderr.Server.Web/ClientApp/components/manage/system/home/home.vue.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ <h4>Welcome to the administration area.</h4>
66
<p>
77
Here you can configure most of the aspects in Coderr. To manage an application, select to the application that you want to manage in the top left menu.
88
<br />
9-
<img src="/images/admin/change-app.png" width="184" height="" />
9+
<img src="images/admin/change-app.png" width="184" alt="Screen-shot of the menu" />
1010
</p>
1111
<p>You can also create a new application by pressing the button below.</p>
1212
<router-link :to="{ name: 'createApp' }" class="btn btn-blue shadow">

src/Server/Coderr.Server.Web/Coderr.Server.Web.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<TypeScriptToolsVersion>Latest</TypeScriptToolsVersion>
77
<IsPackable>false</IsPackable>
88
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
9-
<Version>2.3.2</Version>
9+
<Version>2.3.3</Version>
1010
<UserSecretsId>18bfcacd-1b5d-435b-bc30-febb568a29b2</UserSecretsId>
1111
</PropertyGroup>
1212

src/Server/Coderr.Server.Web/Startup.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ private void ConfigureCoderr(IApplicationBuilder app)
228228
"2b3002d3ab3e4a57ad45cff2210221ab",
229229
"f381a5c9797f49bd8a3238b892d02806");
230230
Err.Configuration.ThrowExceptions = false;
231-
app.CatchOwinExceptions();
231+
app.CatchMiddlewareExceptions();
232232

233233

234234
if (!IsConfigured)

src/Server/Coderr.Server.Web/Views/Shared/_Layout.cshtml

+10-4
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,17 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>@ViewData["Title"] - Coderr</title>
77
<base href="~/" />
8-
<link rel="stylesheet" href="~/dist/css/bootstrap-coderr.css" />
9-
<link rel="stylesheet" href="~/dist/css/site.css" />
10-
<link rel="stylesheet" href="~/dist/css/common.css" />
8+
<environment include="Development">
9+
<link rel="stylesheet" href="~/dist/css/bootstrap-coderr.css" />
10+
<link rel="stylesheet" href="~/dist/css/site.css" />
11+
<link href="~/css/toastr.min.css" rel="stylesheet">
12+
<link rel="stylesheet" href="~/dist/css/common.css" />
13+
</environment>
14+
<environment exclude="Development">
15+
<link rel="stylesheet" href="~/dist/css/bundle.min.css" />
16+
<link rel="stylesheet" href="~/dist/site.css" />
17+
</environment>
1118
<link href="~/css/fontawesome-all.min.css" rel="stylesheet">
12-
<link href="~/css/toastr.min.css" rel="stylesheet">
1319
<link rel="apple-touch-icon" sizes="180x180" href="~/apple-touch-icon.png">
1420
<link rel="icon" type="image/png" sizes="32x32" href="~/favicon-32x32.png">
1521
<link rel="icon" type="image/png" sizes="16x16" href="~/favicon-16x16.png">

src/Server/Coderr.Server.Web/webpack.config.js

+9-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,14 @@ module.exports = (env) => {
3232
}
3333
]
3434
},
35-
{ test: /\.css$/, use: isDevBuild ? ['style-loader', 'css-loader'] : ExtractTextPlugin.extract({ use: 'css-loader?minimize' }) },
35+
{
36+
test: /\.css$/, use: isDevBuild ? ['style-loader', 'css-loader'] : ExtractTextPlugin.extract({
37+
fallback: 'style-loader',
38+
use: [
39+
{ loader: 'css-loader', options: { minimize: true } }
40+
]
41+
})
42+
},
3643
{ test: /\.(png|jpg|jpeg|gif|svg)$/, use: 'url-loader?limit=25000' }
3744
]
3845
},
@@ -61,7 +68,7 @@ module.exports = (env) => {
6168
] : [
6269
// Plugins that apply in production builds only
6370
new UglifyJsPlugin(),
64-
new ExtractTextPlugin('site.css')
71+
new ExtractTextPlugin('ClientApp.css')
6572
])
6673
}];
6774
};
Loading

src/Server/Coderr.Server.Web/wwwroot/scss/coderr-variables.scss

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ $gray-700: #393938;
88
$gray-800: #2e2d2c;
99
$gray-900: #141414;
1010

11-
$blue: #59c1d5git;
11+
$blue: #59c1d5;
1212
$blue-60: #abdbe7;
1313
$blue-30: #d8eef4;
1414

0 commit comments

Comments
 (0)