Skip to content

Commit

Permalink
fixed bugs in BugReporter
Browse files Browse the repository at this point in the history
  • Loading branch information
rickmcgeer committed Apr 6, 2024
1 parent c38eee8 commit 379e978
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions studio/helpers.cp.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ export class BugReporterModel extends ViewModel {
bindings: {
get () {
return [
{ model: 'close button', signal: 'fire', handler: 'close' },
{ model: 'report button', signal: 'fire', handler: 'reportBug' }
{ target: 'close button', signal: 'fire', handler: 'close' },
{ target: 'report button', signal: 'fire', handler: 'reportBug' }
];
}
}
Expand Down Expand Up @@ -199,7 +199,8 @@ const BugReporter = component(GalyleoWindow, {
padding: rect(10, 10, 0, 0),
extent: pt(318, 58.4),
fixedWidth: true,
fixedHeight: true
fixedHeight: true,
readOnly: false
},
{
name: 'footer',
Expand Down Expand Up @@ -479,7 +480,6 @@ export class PublisherModel extends ViewModel {
}
}


// part(Publisher).openInWorld()
const Publisher = component(GalyleoWindow, {
defaultViewModel: PublisherModel,
Expand Down

0 comments on commit 379e978

Please sign in to comment.