mirror of
https://github.com/sartography/cr-connect-bpmn.git
synced 2025-02-18 03:17:09 +00:00
Merge pull request #142 from sartography/git-error-filenotfound-690
FileNotFound error when publishing changes #690
This commit is contained in:
commit
4950ff587f
14
package-lock.json
generated
14
package-lock.json
generated
@ -43,7 +43,7 @@
|
|||||||
"ngx-markdown": "^12.0.1",
|
"ngx-markdown": "^12.0.1",
|
||||||
"protractor": "^7.0.0",
|
"protractor": "^7.0.0",
|
||||||
"rxjs": "^6.5.3",
|
"rxjs": "^6.5.3",
|
||||||
"sartography-workflow-lib": "0.0.615",
|
"sartography-workflow-lib": "0.0.616",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "^8.3.2",
|
||||||
"zone.js": "~0.11.4"
|
"zone.js": "~0.11.4"
|
||||||
@ -16906,9 +16906,9 @@
|
|||||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
||||||
},
|
},
|
||||||
"node_modules/sartography-workflow-lib": {
|
"node_modules/sartography-workflow-lib": {
|
||||||
"version": "0.0.615",
|
"version": "0.0.616",
|
||||||
"resolved": "https://registry.npmjs.org/sartography-workflow-lib/-/sartography-workflow-lib-0.0.615.tgz",
|
"resolved": "https://registry.npmjs.org/sartography-workflow-lib/-/sartography-workflow-lib-0.0.616.tgz",
|
||||||
"integrity": "sha512-JuXbdq99DSh8HiOX8dHzXlAW7qIxiShyZzWntydk+e5V64//tc1UnCnbOQdjcj0qLWDS6OBLfugxTo4nP7ILqA==",
|
"integrity": "sha512-m7lKhp8kpGt3kgkl9WOkznyc1c65uKt9cyYG7NOTaRSA1PO9dgfo12SRqycPiiSpaR/HxHA0R2U6zvCgQLa1Eg==",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"tslib": "^2.2.0"
|
"tslib": "^2.2.0"
|
||||||
}
|
}
|
||||||
@ -33428,9 +33428,9 @@
|
|||||||
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
"integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
|
||||||
},
|
},
|
||||||
"sartography-workflow-lib": {
|
"sartography-workflow-lib": {
|
||||||
"version": "0.0.615",
|
"version": "0.0.616",
|
||||||
"resolved": "https://registry.npmjs.org/sartography-workflow-lib/-/sartography-workflow-lib-0.0.615.tgz",
|
"resolved": "https://registry.npmjs.org/sartography-workflow-lib/-/sartography-workflow-lib-0.0.616.tgz",
|
||||||
"integrity": "sha512-JuXbdq99DSh8HiOX8dHzXlAW7qIxiShyZzWntydk+e5V64//tc1UnCnbOQdjcj0qLWDS6OBLfugxTo4nP7ILqA==",
|
"integrity": "sha512-m7lKhp8kpGt3kgkl9WOkznyc1c65uKt9cyYG7NOTaRSA1PO9dgfo12SRqycPiiSpaR/HxHA0R2U6zvCgQLa1Eg==",
|
||||||
"requires": {
|
"requires": {
|
||||||
"tslib": "^2.2.0"
|
"tslib": "^2.2.0"
|
||||||
}
|
}
|
||||||
|
@ -63,7 +63,7 @@
|
|||||||
"ngx-markdown": "^12.0.1",
|
"ngx-markdown": "^12.0.1",
|
||||||
"protractor": "^7.0.0",
|
"protractor": "^7.0.0",
|
||||||
"rxjs": "^6.5.3",
|
"rxjs": "^6.5.3",
|
||||||
"sartography-workflow-lib": "0.0.615",
|
"sartography-workflow-lib": "0.0.616",
|
||||||
"tslib": "^2.3.0",
|
"tslib": "^2.3.0",
|
||||||
"uuid": "^8.3.2",
|
"uuid": "^8.3.2",
|
||||||
"zone.js": "~0.11.4"
|
"zone.js": "~0.11.4"
|
||||||
|
@ -29,13 +29,23 @@ export class GitRepoDialogComponent {
|
|||||||
{
|
{
|
||||||
key: 'changed',
|
key: 'changed',
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
defaultValue: this.listify(data.changes),
|
defaultValue: this.listify(data.modified),
|
||||||
templateOptions: {
|
templateOptions: {
|
||||||
label: 'These are the changed files',
|
label: 'These are the changed files',
|
||||||
rows: 4,
|
rows: 4,
|
||||||
readonly: true,
|
readonly: true,
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
key: 'deleted',
|
||||||
|
type: 'textarea',
|
||||||
|
defaultValue: this.listify(data.deleted),
|
||||||
|
templateOptions: {
|
||||||
|
label: 'These are the deleted files',
|
||||||
|
rows: 4,
|
||||||
|
readonly: true,
|
||||||
|
}
|
||||||
|
},
|
||||||
{
|
{
|
||||||
key: 'untracked',
|
key: 'untracked',
|
||||||
type: 'textarea',
|
type: 'textarea',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user