Skip to content
Snippets Groups Projects
Commit be70bf49 authored by Reid Givens's avatar Reid Givens
Browse files

Set product file links to open in a new tab.

Execution notes field now scrolls so the save button is always visible when updating the field.
parent 4d889440
No related branches found
No related tags found
No related merge requests found
......@@ -22,7 +22,7 @@
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"aot": false,
"aot": true,
"assets": [
"src/favicon.ico",
"src/assets",
......@@ -31,8 +31,7 @@
"styles": [
"src/styles.scss"
],
"scripts": [],
"es5BrowserSupport": true
"scripts": []
},
"configurations": {
"production": {
......
......@@ -40,7 +40,7 @@
</button>
</div>
<div class="col bg-dark text-light p-2 rounded" contenteditable="true" propValueAccessor="innerHTML"
formControlName="notes"></div>
formControlName="notes" style="max-height: 200px; overflow-y: scroll; overflow-x: hidden;"></div>
</div>
</form>
<h4 class="pt-2 border-top">
......
......@@ -57,7 +57,7 @@
<div class="form-row my-2">
<div class="col-auto">
<a class="btn btn-sm btn-outline-info bg-light"
[routerLink]="['/fileeditor','type', type.id, 'json','configurations']">
[routerLink]="['/fileeditor','type', type.id, 'json','configurations']" target="_blank">
<fa-icon [icon]="faEdit"></fa-icon>
</a>
</div>
......@@ -76,7 +76,7 @@
<div class="form-row my-2">
<div class="col-auto">
<a class="btn btn-sm btn-outline-info bg-light"
[routerLink]="['/fileeditor','product', product.id, 'json','configurations']">
[routerLink]="['/fileeditor','product', product.id, 'json','configurations']" target="_blank">
<fa-icon [icon]="faEdit"></fa-icon>
</a>
</div>
......
......@@ -24,6 +24,6 @@ A service in angular will capture this info and add it to a service
/**
* If you need to overwrite this for this server, use the following
*/
// window.__env.configUrl = 'https://webtest.aoc.nrao.edu/VlassMngr/services/configuration';
window.__env.configUrl = 'https://webtest.aoc.nrao.edu/VlassMngr/services/configuration';
}(this));
......@@ -3,7 +3,7 @@
<head>
<meta charset="utf-8">
<title>VLASS Manager</title>
<base href="./">
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment