Skip to content

Commit 5217915

Browse files
committed
Fixes
1 parent 1b748ca commit 5217915

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

packages/web-components/fast-element/src/templating/binding.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ export class HTMLBindingDirective extends TargetedHTMLDirective {
197197
/**
198198
* Creates an instance of BindingDirective.
199199
* @param binding - A binding that returns the data used to update the DOM.
200+
* @param isVolatile - Optional parameter indicating whether the binding is volatile. If not provided, the volatility of the binding is determined by Observable.isVolatileBinding().
200201
*/
201202
public constructor(public binding: Binding, isVolatile?: boolean) {
202203
super();

packages/web-components/fast-element/src/templating/compiler.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { compileTemplate } from "./compiler";
1010
import type { HTMLDirective } from "./html-directive";
1111
import { html } from "./template";
1212

13-
describe.only("The template compiler", () => {
13+
describe("The template compiler", () => {
1414
function compile(html: string, directives: HTMLDirective[]) {
1515
const template = document.createElement("template");
1616
template.innerHTML = html;

0 commit comments

Comments
 (0)