Skip to content

Commit b008820

Browse files
committed
fix(dashboard): incorrect headers render in bin updating dialog
1 parent 4329c10 commit b008820

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

assets/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ <h1 class="modal-title fs-5">Create/Update Bin</h1>
230230
<!-- Headers -->
231231
<div class="mb-3">
232232
<label class="form-label">Response Headers</label>
233-
<template x-for="[name, value] of Object.entries(activeBin.responding.template.headers)">
233+
<template x-for="[name, value] of Object.entries(updatingBin.template.headers)">
234234
<div class="input-group">
235235
<input type="text" class="form-control rounded-0 border-bottom-0"
236236
:value="`${name}: ${value}`" readonly>

0 commit comments

Comments
 (0)