projects
/
working
/
Evergreen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
c0e7dd0
)
LP#626157 Ang2 experiments / service
author
Bill Erickson
<berickxx@gmail.com>
Sun, 19 Nov 2017 15:44:15 +0000
(10:44 -0500)
committer
Bill Erickson
<berickxx@gmail.com>
Mon, 11 Dec 2017 17:39:51 +0000
(12:39 -0500)
Signed-off-by: Bill Erickson <berickxx@gmail.com>
Open-ILS/webby-src/src/app/core/eg-event.ts
patch
|
blob
|
history
diff --git
a/Open-ILS/webby-src/src/app/core/eg-event.ts
b/Open-ILS/webby-src/src/app/core/eg-event.ts
index
1561fed
..
1b5903d
100644
(file)
--- a/
Open-ILS/webby-src/src/app/core/eg-event.ts
+++ b/
Open-ILS/webby-src/src/app/core/eg-event.ts
@@
-12,12
+12,12
@@
export class EgEvent {
success : Boolean = false;
toString(): String {
-
let s = `Event: ${this.code}:${this.textcode} -> ${this.desc}`;
- if (this.ilsperm)
-
s += ` ${this.ilsperm}@${this.ilspermloc}`;
-
if (this.note)
-
s += `\n${this.note}`;
- return s;
+ let s = `Event: ${this.code}:${this.textcode} -> ${this.desc}`;
+ if (this.ilsperm)
+ s += ` ${this.ilsperm}@${this.ilspermloc}`;
+ if (this.note)
+ s += `\n${this.note}`;
+ return s;
}
/**