Skip to content

Commit

Permalink
Refine UI.
Browse files Browse the repository at this point in the history
  • Loading branch information
winlinvip committed Oct 23, 2023
1 parent 7ec799c commit c65150d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion auto/tcui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,4 @@ echo "Publish OK: $TAG"

echo -e "\n\n"
echo "Publish OK: $TAG $PLATFORM_TAG"
echo " https://github.com/ossrs/tc-ui/actions/workflows/releases.yml"
echo " https://github.com/ossrs/tc-ui/actions/workflows/tcui.yml"
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"strings"
)

const version = "1.0.9"
const version = "1.0.10"

func main() {
ctx := logger.WithContext(context.Background())
Expand Down
2 changes: 1 addition & 1 deletion ui/src/components/StrategySetting.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function StrategySetting({
<Form.Text> * 目标带宽</Form.Text>
<InputGroup className="mb-3">
<Form.Select defaultValue={rate} onChange={(e) => setRate(e.target.value)}>
{[1, 10, 100, 300, 500, 800, 900, 1000, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2500, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 15000, 30000, 50000, 100000, 1000000].map((e, index) => {
{[1, 10, 100, 300, 400, 500, 600, 700, 800, 900, 1000, 1200, 1300, 1400, 1500, 1600, 1700, 1800, 1900, 2000, 2500, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000, 15000, 30000, 50000, 100000, 1000000].map((e, index) => {
return <option value={e} key={index}>{e ? e : '不限'}</option>;
})}
</Form.Select>
Expand Down

0 comments on commit c65150d

Please sign in to comment.