agent-zero/plugins/_error_retry/webui/config.html

32 lines
934 B
HTML

<html>
<head>
<title>Error retry</title>
</head>
<body>
<div x-data>
<template x-if="config">
<div>
<div class="section-title">Error retry</div>
<div class="section-description">
Settings for retrying failed operations.
</div>
<div class="field">
<div class="field-label">
<div class="field-title">Retries</div>
<div class="field-description">
Number of retries after an error occurs.
</div>
</div>
<div class="field-control">
<input type="number" min="0"
x-model.number="config.retries" />
</div>
</div>
</div>
</template>
</div>
</body>
</html>