Skip to content

Commit 2914e89

Browse files
committed
chore(stagehand): tweaks
1 parent 6a00945 commit 2914e89

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

apps/stagehand/src/app/alerts.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,14 +346,14 @@ import { SidebarComponent } from './ui/sidebar.component';
346346
</ng-template>
347347
<ng-template #actions_template let-row="row">
348348
<div class="flex space-x-2 p-2">
349-
{{ backoffice_link | json }}
350349
<a
351350
icon
352351
matRipple
353352
[href]="
354353
(backoffice_link() || '/backoffice/') +
355354
'#/systems/' +
356-
row.location
355+
row.location +
356+
'/modules'
357357
"
358358
target="_blank"
359359
ref="noopener noreferrer"

apps/stagehand/src/app/remote-support.component.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -371,7 +371,8 @@ function contains(str: string, substr: string) {
371371
[href]="
372372
(backoffice_link() || '/backoffice/') +
373373
'#/systems/' +
374-
row.id
374+
row.id +
375+
'/modules'
375376
"
376377
target="_blank"
377378
ref="noopener noreferrer"
@@ -636,6 +637,7 @@ export class RemoteSupportComponent extends AsyncHandler implements OnInit {
636637
}
637638

638639
public setNextBooking(space: Space, event: CalendarEvent) {
640+
console.log('Next:', space, event);
639641
const current = this.next();
640642
if (!event && current[space.id]) {
641643
delete current[space.id];

libs/components/src/lib/binding.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ export class BindingDirective<T = any>
105105
this.subscription(
106106
'on_changes',
107107
binding.bindThenSubscribe((value) => {
108-
if (value == null) return;
108+
// if (value == null) return;
109109
setTimeout(() => {
110110
this._binding = false;
111111
this.clearTimeout('bound');

0 commit comments

Comments
 (0)