Skip to content

Commit d0b041d

Browse files
committed
Use "Gutenberg" name
1 parent 6a8db95 commit d0b041d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

html-api-debugger/interactivity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ class="html-api-debugger-container html-api-debugger--grid"
191191
</label>
192192
<label>
193193
<code>WordPress/gutenberg</code> PR number:
194-
<input type="number" min="1" <?php wp_on_directive( 'input', 'handleCopyGbPrInput' ); ?>>
194+
<input type="number" min="1" <?php wp_on_directive( 'input', 'handleCopyGutenbergPrInput' ); ?>>
195195
</label>
196196
<button <?php wp_on_directive( 'click', 'handleCopyPrClick' ); ?>>Copy shareable playground link to PR</button>
197197
<span data-wp-bind--hidden="!state.previewCoreLink">

html-api-debugger/view.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ const store = createStore(NS, {
558558
},
559559

560560
/** @param {InputEvent} e */
561-
handleCopyGbPrInput(e) {
561+
handleCopyGutenbergPrInput(e) {
562562
const val = /** @type {HTMLInputElement} */ (e.target).valueAsNumber;
563563
if (Number.isFinite(val) && val > 0) {
564564
store.state.previewGutenbergPrNumber = val;

0 commit comments

Comments
 (0)