mirror of https://github.com/portainer/portainer
fix(ui): autocomplete on edge custom template and stacks [EE-6761] (#11269)
parent
f6b2c879bc
commit
de3a3f88a0
|
@ -4,7 +4,7 @@
|
|||
<div class="col-sm-12">
|
||||
<rd-widget>
|
||||
<rd-widget-body>
|
||||
<form class="form-horizontal" name="$ctrl.form">
|
||||
<form class="form-horizontal" name="$ctrl.form" autocomplete="off">
|
||||
<!-- name-input -->
|
||||
<div class="form-group">
|
||||
<label for="stack_name" class="col-sm-1 control-label required text-left"> Name </label>
|
||||
|
|
|
@ -61,7 +61,7 @@ export function InnerForm({
|
|||
const texts = textByType[values.Type];
|
||||
|
||||
return (
|
||||
<Form className="form-horizontal">
|
||||
<Form className="form-horizontal" autoComplete="off">
|
||||
<CommonFields
|
||||
values={values}
|
||||
onChange={(newValues) =>
|
||||
|
|
|
@ -65,7 +65,7 @@ export function InnerForm({
|
|||
const texts = textByType[values.Type];
|
||||
|
||||
return (
|
||||
<Form className="form-horizontal">
|
||||
<Form className="form-horizontal" autoComplete="off">
|
||||
<CommonFields
|
||||
values={values}
|
||||
onChange={(newValues) =>
|
||||
|
|
Loading…
Reference in New Issue