Monorepo for Tangled tangled.org
2

Configure Feed

Select the types of activity you want to include in your feed.

appview: disable autocomplete in markdownEditor and issue title to avoid browser repeating submitted content

+2 -1
+1
appview/pages/templates/fragments/markdownEditor.html
··· 34 34 <textarea 35 35 name="{{ $name }}" 36 36 rows="{{ $rows }}" 37 + autocomplete="off" 37 38 class="w-full resize-y dark:bg-gray-800 dark:text-white dark:border-gray-700" 38 39 {{if $required}}required{{end}} 39 40 {{if $autofocus}}autofocus{{end}}
+1 -1
appview/pages/templates/repo/issues/fragments/putIssue.html
··· 12 12 <div class="flex flex-col gap-2"> 13 13 <div> 14 14 <label for="title">Title</label> 15 - <input type="text" name="title" id="title" class="w-full" value="{{ if .Issue }}{{ .Issue.Title }}{{ end }}" /> 15 + <input type="text" name="title" id="title" autocomplete="off" class="w-full" value="{{ if .Issue }}{{ .Issue.Title }}{{ end }}" /> 16 16 </div> 17 17 <div> 18 18 <label for="body">Body</label>