Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 24, 2024
1 parent 563d179 commit 3b6263d
Showing 1 changed file with 7 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -244,14 +244,13 @@ export class GuidedSourceDataPage extends ManagedPage {
const header = document.createElement("div");
const h2 = document.createElement("h2");
Object.assign(h2.style, {
marginBottom: '10px'
})
h2.innerText = `Alignment Preview: ${subject}/${session}`
const warning = document.createElement('small')
warning.innerHTML = '<b>Warning:</b> This is just a preview. We do not currently have the features implemented to change the alignment of your interfaces.'
header.append(h2, warning)


marginBottom: "10px",
});
h2.innerText = `Alignment Preview: ${subject}/${session}`;
const warning = document.createElement("small");
warning.innerHTML =
"<b>Warning:</b> This is just a preview. We do not currently have the features implemented to change the alignment of your interfaces.";
header.append(h2, warning);

const modal = new Modal({
header,
Expand Down

0 comments on commit 3b6263d

Please sign in to comment.