Skip to content

Commit

Permalink
Merge pull request #76 from andy89923/fix/default-value
Browse files Browse the repository at this point in the history
Fix: fix config and change default value
  • Loading branch information
ianchen0119 authored Mar 5, 2024
2 parents deb8c1d + 2237bfa commit 96cbaa2
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
1 change: 0 additions & 1 deletion config/webuicfg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ configuration:
tls:
pem: cert/chf.pem
key: cert/chf.key
nrfUri: http://127.0.0.10:8000 # a valid URI of NRF

logger: # log output setting
enable: true # true or false
Expand Down
10 changes: 5 additions & 5 deletions frontend/src/pages/SubscriberCreate.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -197,14 +197,14 @@ export default function SubscriberCreate() {
},
FlowRules: [
{
filter: "1.1.1.1/32",
filter: "0.0.0.0/0",
precedence: 128,
snssai: "01010203",
dnn: "internet",
qosRef: 1,
},
{
filter: "9.9.9.9/32",
filter: "0.0.0.0/0",
precedence: 127,
snssai: "01112233",
dnn: "internet",
Expand Down Expand Up @@ -244,7 +244,7 @@ export default function SubscriberCreate() {
snssai: "01010203",
dnn: "internet",
qosRef: 1,
filter: "1.1.1.1/32",
filter: "0.0.0.0/0",
chargingMethod: "Offline",
quota: "100000",
unitCost: "1",
Expand All @@ -259,9 +259,9 @@ export default function SubscriberCreate() {
snssai: "01112233",
dnn: "internet",
qosRef: 2,
filter: "9.9.9.9/32",
filter: "0.0.0.0/0",
chargingMethod: "Online",
quota: "2000",
quota: "5000",
unitCost: "1",
},
],
Expand Down

0 comments on commit 96cbaa2

Please sign in to comment.