QuecManager BETA 1.0.6
- Resolved IMEI Mangling Issue - Optimized Logging and AT Operations: Centralized logging to smd7 and redirected all AT operations to smd11 to prevent request conflicts. - Introduced Cell Locking Scheduler - Fixed SMS Inbox Loading Issue: Addressed a bug where the SMS inbox would get stuck during loading. - Enhanced Speedtest Output: Updated speed test results to display values with two decimal points when reaching GBps speeds. - Changed Link Speed from "Unknown!" to "-" when link is not active - Added 5 second cooldown to speedtest Co-Authored-By: Russel Yasol <73575327+dr-dolomite@users.noreply.github.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
Package: sdxpinn-quecmanager-beta
|
||||
Version: 1.0.5
|
||||
Version: 1.0.6
|
||||
Architecture: aarch64_cortex-a53
|
||||
Maintainer: Russel Yasol dr-dolomite@github.com Cameron Thompson iamromulan@github.com
|
||||
Description: A custom web UI desgined to run alongside luci for Quectel RM55x modems
|
||||
|
||||
@@ -1,14 +1,52 @@
|
||||
#!/bin/ash
|
||||
|
||||
# Backup the original index.html and replace with login.html
|
||||
mv /www/index.html /www/index.html.old
|
||||
cp /www/login.html /www/index.html
|
||||
|
||||
# Check if log_signal_metrics.sh is set to start in rc.local and add if not
|
||||
grep -qxF "/www/cgi-bin/home/log_signal_metrics.sh &" /etc/rc.local || \
|
||||
sed -i '/^exit 0/i /www/cgi-bin/home/log_signal_metrics.sh &' /etc/rc.local
|
||||
# Define the commands to add to rc.local
|
||||
COMMANDS="/www/cgi-bin/settings/change_sms_code.sh &
|
||||
/www/cgi-bin/home/log_signal_metrics.sh &"
|
||||
|
||||
# Create a new rc.local with commands correctly placed
|
||||
TMP_RC_LOCAL=$(mktemp)
|
||||
|
||||
# Check if log_signal_metrics.sh is already running
|
||||
awk -v commands="$COMMANDS" '
|
||||
BEGIN {
|
||||
split(commands, cmdArr, "\n") # Split commands into an array
|
||||
for (i in cmdArr) alreadyAdded[cmdArr[i]] = 0
|
||||
added = 0
|
||||
}
|
||||
{
|
||||
if ($0 in alreadyAdded) {
|
||||
alreadyAdded[$0] = 1
|
||||
next
|
||||
}
|
||||
if (/^# Put your custom commands here/) {
|
||||
print
|
||||
if (!added) {
|
||||
for (i in cmdArr) if (!alreadyAdded[cmdArr[i]]) {
|
||||
print cmdArr[i]
|
||||
alreadyAdded[cmdArr[i]] = 1
|
||||
}
|
||||
print ""
|
||||
added = 1
|
||||
}
|
||||
} else {
|
||||
print
|
||||
}
|
||||
}
|
||||
END {
|
||||
# Add any missing commands at the end of the section
|
||||
for (i in cmdArr) if (!alreadyAdded[cmdArr[i]]) print cmdArr[i]
|
||||
}
|
||||
' /etc/rc.local > "$TMP_RC_LOCAL"
|
||||
|
||||
# Replace the original rc.local with the modified one
|
||||
mv "$TMP_RC_LOCAL" /etc/rc.local
|
||||
chmod +x /etc/rc.local
|
||||
|
||||
# Ensure log_signal_metrics.sh is running
|
||||
if ! pgrep -f "/www/cgi-bin/home/log_signal_metrics.sh" > /dev/null; then
|
||||
echo "Starting log_signal_metrics.sh..."
|
||||
/www/cgi-bin/home/log_signal_metrics.sh &
|
||||
@@ -16,5 +54,13 @@ else
|
||||
echo "log_signal_metrics.sh is already running. Skipping start."
|
||||
fi
|
||||
|
||||
# Ensure change_sms_code.sh is running
|
||||
if ! pgrep -f "/www/cgi-bin/settings/change_sms_code.sh" > /dev/null; then
|
||||
echo "Starting change_sms_code.sh..."
|
||||
/www/cgi-bin/settings/change_sms_code.sh &
|
||||
else
|
||||
echo "change_sms_code.sh is already running. Skipping start."
|
||||
fi
|
||||
|
||||
exit 0
|
||||
|
||||
|
||||
@@ -2,29 +2,5 @@
|
||||
|
||||
mv /www/index.html.old /www/index.html
|
||||
|
||||
# Check if log_signal_metrics.sh is in rc.local and remove it
|
||||
sed -i '/\/www\/cgi-bin\/home\/log_signal_metrics\.sh &/d' /etc/rc.local
|
||||
|
||||
|
||||
# Check if log_signal_metrics.sh is running and kill it
|
||||
|
||||
PID=$(pgrep -f "/www/cgi-bin/home/log_signal_metrics.sh")
|
||||
|
||||
if [ -n "$PID" ]; then
|
||||
echo "Stopping log_signal_metrics.sh (PID: $PID)..."
|
||||
|
||||
# Kill the process
|
||||
kill -TERM "$PID"
|
||||
|
||||
if [ $? -eq 0 ]; then
|
||||
echo "Successfully stopped log_signal_metrics.sh."
|
||||
else
|
||||
echo "Failed to stop log_signal_metrics.sh."
|
||||
fi
|
||||
else
|
||||
echo "log_signal_metrics.sh is not running. Nothing to stop."
|
||||
fi
|
||||
|
||||
|
||||
exit 0
|
||||
|
||||
|
||||
31
ipk-source/sdxpinn-quecmanager-beta/CONTROL/prerm
Executable file
31
ipk-source/sdxpinn-quecmanager-beta/CONTROL/prerm
Executable file
@@ -0,0 +1,31 @@
|
||||
#!/bin/ash
|
||||
|
||||
echo "Stopping QuecManager Services and removing from rc.local..."
|
||||
|
||||
# Remove services from rc.local if present
|
||||
sed -i '/\/www\/cgi-bin\/home\/log_signal_metrics\.sh &/d' /etc/rc.local
|
||||
sed -i '/\/www\/cgi-bin\/settings\/change_sms_code\.sh &/d' /etc/rc.local
|
||||
|
||||
# Define an array of scripts to check and stop
|
||||
SCRIPTS=(
|
||||
"/www/cgi-bin/home/log_signal_metrics.sh"
|
||||
"/www/cgi-bin/settings/change_sms_code.sh"
|
||||
)
|
||||
|
||||
# Loop through each script, check if it's running, and kill it if necessary
|
||||
for SCRIPT in "${SCRIPTS[@]}"; do
|
||||
PID=$(pgrep -f "$SCRIPT")
|
||||
if [ -n "$PID" ]; then
|
||||
echo "Stopping $SCRIPT (PID: $PID)..."
|
||||
if kill -TERM "$PID"; then
|
||||
echo "Successfully stopped $SCRIPT."
|
||||
else
|
||||
echo "Failed to stop $SCRIPT."
|
||||
fi
|
||||
else
|
||||
echo "$SCRIPT is not running. Nothing to stop."
|
||||
fi
|
||||
done
|
||||
|
||||
exit 0
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -36,18 +36,13 @@ if [ ! -f "$CONFIG_FILE" ]; then
|
||||
fi
|
||||
|
||||
# Get AT_PORT with debug logging
|
||||
# Get AT_PORT with debug logging
|
||||
AT_PORT=$(head -n 2 "$CONFIG_FILE" | tail -n 1 | cut -d'=' -f2 | tr -d ' \n\r' | sed 's|^dev/||')
|
||||
AT_PORT=$(head -n 1 "$CONFIG_FILE" | cut -d'=' -f2 | tr -d ' \n\r' | sed 's|^dev/||')
|
||||
echo "Raw config line: $(head -n 1 "$CONFIG_FILE")" >> "$DEBUG_LOG"
|
||||
echo "Extracted AT_PORT: '$AT_PORT'" >> "$DEBUG_LOG"
|
||||
|
||||
# List available devices for debugging
|
||||
ls -l /dev/smd* >> "$DEBUG_LOG" 2>&1
|
||||
|
||||
if [ -z "$AT_PORT" ]; then
|
||||
echo "AT_PORT is empty" >> "$DEBUG_LOG"
|
||||
echo '{"error": "Failed to read AT_PORT from config"}'
|
||||
exit 1
|
||||
output_error "Failed to read AT_PORT from config"
|
||||
fi
|
||||
|
||||
# Check if AT_PORT exists
|
||||
@@ -55,8 +50,7 @@ if [ ! -c "/dev/$AT_PORT" ]; then
|
||||
echo "AT_PORT device not found: /dev/$AT_PORT" >> "$DEBUG_LOG"
|
||||
echo "Available smd devices:" >> "$DEBUG_LOG"
|
||||
ls -l /dev/smd* >> "$DEBUG_LOG" 2>&1
|
||||
echo '{"error": "AT_PORT device not found"}'
|
||||
exit 1
|
||||
output_error "AT_PORT device not found"
|
||||
fi
|
||||
|
||||
# Write the command directly to the input file
|
||||
|
||||
@@ -0,0 +1,201 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Configuration
|
||||
CONFIG_FILE="/etc/cell_lock_schedule.conf"
|
||||
STATUS_FILE="/tmp/cell_lock_status"
|
||||
CELL_LOCK_SCRIPT="/usr/bin/set_cell_lock.sh"
|
||||
|
||||
# Function to create set_cell_lock.sh script
|
||||
create_cell_lock_script() {
|
||||
# Only create the script if it doesn't exist
|
||||
if [ ! -f "$CELL_LOCK_SCRIPT" ]; then
|
||||
cat >"$CELL_LOCK_SCRIPT" <<'EOL'
|
||||
#!/bin/sh
|
||||
ACTION=$1
|
||||
LTE_PARAMS=$2
|
||||
NR5G_PARAMS=$3
|
||||
|
||||
case "$ACTION" in
|
||||
enable)
|
||||
# Enable LTE lock if parameters exist
|
||||
if [ -n "$LTE_PARAMS" ]; then
|
||||
echo "AT+QNWLOCK=\"common/4g\",$LTE_PARAMS" | atinout - /dev/smd11 -
|
||||
fi
|
||||
|
||||
# Enable NR5G lock if parameters exist
|
||||
if [ -n "$NR5G_PARAMS" ]; then
|
||||
echo "AT+QNWLOCK=\"common/5g\",$NR5G_PARAMS" | atinout - /dev/smd11 -
|
||||
fi
|
||||
;;
|
||||
|
||||
disable)
|
||||
# Disable LTE lock
|
||||
echo 'AT+QNWLOCK="common/4g",0' | atinout - /dev/smd11 -
|
||||
|
||||
# Disable NR5G lock
|
||||
echo 'AT+QNWLOCK="common/5g",0' | atinout - /dev/smd11 -
|
||||
;;
|
||||
|
||||
*)
|
||||
echo "Invalid action"
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
# Restart network registration to apply changes
|
||||
echo "AT+COPS=2" | atinout - /dev/smd11 -
|
||||
sleep 2
|
||||
echo "AT+COPS=0" | atinout - /dev/smd11 -
|
||||
exit 0
|
||||
EOL
|
||||
|
||||
# Make the script executable
|
||||
chmod +x "$CELL_LOCK_SCRIPT"
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to remove set_cell_lock.sh script
|
||||
remove_cell_lock_script() {
|
||||
if [ -f "$CELL_LOCK_SCRIPT" ]; then
|
||||
rm "$CELL_LOCK_SCRIPT"
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to urldecode
|
||||
urldecode() {
|
||||
echo -e "$(echo "$1" | sed 's/+/ /g;s/%\([0-9A-F][0-9A-F]\)/\\x\1/g')"
|
||||
}
|
||||
|
||||
# Function to convert HH:MM to cron format
|
||||
convert_to_cron_time() {
|
||||
echo "$1" | awk -F: '{print $2, $1}'
|
||||
}
|
||||
|
||||
# Function to save configuration
|
||||
save_config() {
|
||||
echo "START_TIME=$1" >"$CONFIG_FILE"
|
||||
echo "END_TIME=$2" >>"$CONFIG_FILE"
|
||||
echo "ENABLED=1" >>"$CONFIG_FILE"
|
||||
}
|
||||
|
||||
# Function to disable scheduling
|
||||
disable_scheduling() {
|
||||
if [ -f "$CONFIG_FILE" ]; then
|
||||
sed -i 's/ENABLED=1/ENABLED=0/' "$CONFIG_FILE"
|
||||
fi
|
||||
# Remove any existing cron jobs
|
||||
crontab -l | grep -v "set_cell_lock.sh" | crontab -
|
||||
# Remove the set_cell_lock.sh script
|
||||
remove_cell_lock_script
|
||||
}
|
||||
|
||||
# Function to get current status
|
||||
get_status() {
|
||||
if [ -f "$CONFIG_FILE" ]; then
|
||||
ENABLED=$(grep "ENABLED=" "$CONFIG_FILE" | cut -d'=' -f2)
|
||||
START_TIME=$(grep "START_TIME=" "$CONFIG_FILE" | cut -d'=' -f2)
|
||||
END_TIME=$(grep "END_TIME=" "$CONFIG_FILE" | cut -d'=' -f2)
|
||||
|
||||
echo "Status: 200 OK"
|
||||
echo "Content-Type: application/json"
|
||||
echo ""
|
||||
echo "{\"enabled\":$ENABLED,\"start_time\":\"$START_TIME\",\"end_time\":\"$END_TIME\"}"
|
||||
else
|
||||
echo "Status: 200 OK"
|
||||
echo "Content-Type: application/json"
|
||||
echo ""
|
||||
echo "{\"enabled\":0,\"start_time\":\"\",\"end_time\":\"\"}"
|
||||
fi
|
||||
}
|
||||
|
||||
# Handle POST requests
|
||||
if [ "$REQUEST_METHOD" = "POST" ]; then
|
||||
# Read POST data
|
||||
read -r POST_DATA
|
||||
|
||||
# Check if disabling is requested
|
||||
echo "$POST_DATA" | grep -q "disable=true"
|
||||
if [ $? -eq 0 ]; then
|
||||
disable_scheduling
|
||||
echo "Status: 200 OK"
|
||||
echo "Content-Type: application/json"
|
||||
echo ""
|
||||
echo "{\"status\":\"success\",\"message\":\"Scheduling disabled\"}"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Extract start and end times
|
||||
START_TIME=$(echo "$POST_DATA" | grep -o 'start_time=[^&]*' | cut -d'=' -f2)
|
||||
END_TIME=$(echo "$POST_DATA" | grep -o 'end_time=[^&]*' | cut -d'=' -f2)
|
||||
|
||||
# Decode times
|
||||
START_TIME=$(urldecode "$START_TIME")
|
||||
END_TIME=$(urldecode "$END_TIME")
|
||||
|
||||
# Validate times
|
||||
if [ -z "$START_TIME" ] || [ -z "$END_TIME" ]; then
|
||||
echo "Status: 400 Bad Request"
|
||||
echo "Content-Type: application/json"
|
||||
echo ""
|
||||
echo "{\"error\":\"Missing start or end time\"}"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Create set_cell_lock.sh script
|
||||
create_cell_lock_script
|
||||
|
||||
# Convert times to cron format
|
||||
CRON_START=$(convert_to_cron_time "$START_TIME")
|
||||
CRON_END=$(convert_to_cron_time "$END_TIME")
|
||||
|
||||
# Save configuration
|
||||
save_config "$START_TIME" "$END_TIME"
|
||||
|
||||
# Check current cell lock status and get parameters
|
||||
LTE_STATUS=$(echo 'AT+QNWLOCK="common/4g"' | atinout - /dev/smd11 -)
|
||||
NR5G_STATUS=$(echo 'AT+QNWLOCK="common/5g"' | atinout - /dev/smd11 -)
|
||||
|
||||
# Extract LTE parameters if locked
|
||||
LTE_PARAMS=$(echo "$LTE_STATUS" | grep -o '"common/4g",[^[:space:]]*' | cut -d',' -f2-)
|
||||
NR5G_PARAMS=$(echo "$NR5G_STATUS" | grep -o '"common/5g",[^[:space:]]*' | cut -d',' -f2-)
|
||||
|
||||
# Create temporary file for new crontab
|
||||
TEMP_CRON=$(mktemp)
|
||||
|
||||
# Get existing crontab entries (excluding our script)
|
||||
crontab -l 2>/dev/null | grep -v "set_cell_lock.sh" >"$TEMP_CRON"
|
||||
|
||||
# Add new entries
|
||||
echo "$CRON_START * * * $CELL_LOCK_SCRIPT enable \"$LTE_PARAMS\" \"$NR5G_PARAMS\"" >>"$TEMP_CRON"
|
||||
echo "$CRON_END * * * $CELL_LOCK_SCRIPT disable" >>"$TEMP_CRON"
|
||||
|
||||
# Install new crontab
|
||||
crontab "$TEMP_CRON"
|
||||
rm "$TEMP_CRON"
|
||||
|
||||
echo "Status: 200 OK"
|
||||
echo "Content-Type: application/json"
|
||||
echo ""
|
||||
echo "{\"status\":\"success\",\"message\":\"Scheduling enabled\"}"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# Parse query string for GET requests
|
||||
if [ "$REQUEST_METHOD" = "GET" ]; then
|
||||
QUERY_STRING=$(echo "$QUERY_STRING" | sed 's/&/\n/g')
|
||||
for param in $QUERY_STRING; do
|
||||
case "$param" in
|
||||
status=*)
|
||||
get_status
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
done
|
||||
fi
|
||||
|
||||
# If no valid request is made
|
||||
echo "Status: 400 Bad Request"
|
||||
echo "Content-Type: application/json"
|
||||
echo ""
|
||||
echo "{\"error\":\"Invalid request\"}"
|
||||
exit 1
|
||||
@@ -5,4 +5,4 @@ echo "Content-Type: application/json"
|
||||
echo
|
||||
|
||||
# Read the JSON file and get only the last entry using jq
|
||||
jq 'last' /tmp/signal_graphs/data_usage.json
|
||||
jq 'last' /www/signal_graphs/data_usage.json
|
||||
@@ -5,7 +5,7 @@ echo "Content-Type: application/json"
|
||||
echo ""
|
||||
|
||||
# Directory where JSON files are stored (adjust as needed)
|
||||
JSON_DIR="/tmp/signal_graphs/"
|
||||
JSON_DIR="/www/signal_graphs/"
|
||||
|
||||
# Function to safely read JSON file
|
||||
read_json_file() {
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Ensure the directory exists
|
||||
LOGDIR="/tmp/signal_graphs"
|
||||
LOGDIR="/www/signal_graphs"
|
||||
mkdir -p "$LOGDIR"
|
||||
|
||||
# Maximum number of entries
|
||||
MAX_ENTRIES=10
|
||||
|
||||
# Interval between logs (in seconds)
|
||||
INTERVAL=25
|
||||
INTERVAL=15
|
||||
|
||||
# Function to clean and extract actual output from atinout
|
||||
clean_atinout_output() {
|
||||
@@ -66,7 +66,7 @@ log_data_usage() {
|
||||
TIMESTAMP=$(date "+%Y-%m-%d %H:%M:%S")
|
||||
|
||||
# Run the AT command and capture its output, then clean it
|
||||
DATA_OUTPUT=$(echo "AT+QGDCNT?;+QGDNRCNT?" | atinout - /dev/smd7 - | clean_atinout_output)
|
||||
DATA_OUTPUT=$(echo "AT+QGDCNT?;+QGDNRCNT?" | atinout - /dev/smd11 - | clean_atinout_output)
|
||||
|
||||
# Ensure the file exists and is a valid JSON array
|
||||
if [ ! -s "$LOGFILE" ]; then
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
#!/bin/sh
|
||||
|
||||
# Script to configure SMS text mode on a modem device
|
||||
# Usage: ./sms_config.sh
|
||||
|
||||
# Check if atinout is installed
|
||||
if ! command -v atinout &> /dev/null; then
|
||||
echo "Error: atinout is not installed"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Check if the device exists
|
||||
if [ ! -c "/dev/smd11" ]; then
|
||||
echo "Error: Device /dev/smd11 not found"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
# Send AT command to set SMS text mode
|
||||
if ! echo "AT+CMGF=1" | atinout - /dev/smd11 -; then
|
||||
echo "Error: Failed to send AT command"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Successfully configured SMS text mode"
|
||||
File diff suppressed because one or more lines are too long
@@ -3,10 +3,10 @@
|
||||
4:I[16102,[],""]
|
||||
5:I[22609,[],""]
|
||||
6:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
8:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
9:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
a:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
8:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
9:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
a:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["about",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["about",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","about","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L8",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$La",null,{}]]}]}]],null],null],["$Lb",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["about",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["about",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","about","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L8",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$La",null,{}]]}]}]],null],null],["$Lb",null]]]]
|
||||
b:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[27442,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1060","static/chunks/app/dashboard/advanced-settings/layout-ec27291099cba867.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["at-terminal",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["at-terminal",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","at-terminal","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["at-terminal",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["at-terminal",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","at-terminal","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[27442,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1060","static/chunks/app/dashboard/advanced-settings/layout-ec27291099cba867.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["connectivity",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["connectivity",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","connectivity","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["connectivity",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["connectivity",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","connectivity","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[27442,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1060","static/chunks/app/dashboard/advanced-settings/layout-ec27291099cba867.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["mtu",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["mtu",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","mtu","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["mtu",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["mtu",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","mtu","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[27442,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1060","static/chunks/app/dashboard/advanced-settings/layout-ec27291099cba867.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["ttl-settings",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["ttl-settings",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","ttl-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["advanced-settings",{"children":["ttl-settings",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["advanced-settings",{"children":["ttl-settings",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children","ttl-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","advanced-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[78700,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1159","static/chunks/app/dashboard/cell-settings/layout-66aa85089ee93918.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["band-locking",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["band-locking",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","band-locking","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["band-locking",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["band-locking",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","band-locking","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[78700,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1159","static/chunks/app/dashboard/cell-settings/layout-66aa85089ee93918.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["basic-settings",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["basic-settings",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","basic-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["basic-settings",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["basic-settings",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","basic-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,13 +1,13 @@
|
||||
2:I[78073,[],"ClientPageRoot"]
|
||||
3:I[61830,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","2072","static/chunks/2072-6b7bff13a5bdf6cc.js","1247","static/chunks/1247-638b0a66a55403bc.js","1081","static/chunks/app/dashboard/cell-settings/cell-locking/page-ca289761b4fe57f2.js"],"default",1]
|
||||
3:I[70273,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","2072","static/chunks/2072-6b7bff13a5bdf6cc.js","7503","static/chunks/7503-03adcad21246588e.js","1247","static/chunks/1247-638b0a66a55403bc.js","1081","static/chunks/app/dashboard/cell-settings/cell-locking/page-d9cb31b7fab7b694.js"],"default",1]
|
||||
4:I[16102,[],""]
|
||||
5:I[22609,[],""]
|
||||
6:I[78700,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1159","static/chunks/app/dashboard/cell-settings/layout-66aa85089ee93918.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["cell-locking",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["cell-locking",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","cell-locking","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["cell-locking",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["cell-locking",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","cell-locking","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,13 +1,13 @@
|
||||
2:I[78073,[],"ClientPageRoot"]
|
||||
3:I[47410,["4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7829","static/chunks/7829-6db56c17b5199270.js","4385","static/chunks/app/dashboard/cell-settings/imei-mangling/page-1d06e85afd5744cd.js"],"default",1]
|
||||
3:I[47410,["4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7829","static/chunks/7829-6db56c17b5199270.js","4385","static/chunks/app/dashboard/cell-settings/imei-mangling/page-d4f5793e760bf630.js"],"default",1]
|
||||
4:I[16102,[],""]
|
||||
5:I[22609,[],""]
|
||||
6:I[78700,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1159","static/chunks/app/dashboard/cell-settings/layout-66aa85089ee93918.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["imei-mangling",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["imei-mangling",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","imei-mangling","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["imei-mangling",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["imei-mangling",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","imei-mangling","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,13 +1,13 @@
|
||||
2:I[78073,[],"ClientPageRoot"]
|
||||
3:I[26678,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","4491","static/chunks/4491-e84291153712f394.js","2310","static/chunks/2310-f22b802dc5c7a428.js","2959","static/chunks/app/dashboard/cell-settings/sms/page-886ee1e66fa55baf.js"],"default",1]
|
||||
3:I[26678,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","4491","static/chunks/4491-e84291153712f394.js","2310","static/chunks/2310-f22b802dc5c7a428.js","2959","static/chunks/app/dashboard/cell-settings/sms/page-af4bd5aaf820e919.js"],"default",1]
|
||||
4:I[16102,[],""]
|
||||
5:I[22609,[],""]
|
||||
6:I[78700,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1159","static/chunks/app/dashboard/cell-settings/layout-66aa85089ee93918.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["sms",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["sms",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","sms","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["cell-settings",{"children":["sms",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["cell-settings",{"children":["sms",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children","sms","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","cell-settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -2,10 +2,10 @@
|
||||
3:I[16102,[],""]
|
||||
4:I[22609,[],""]
|
||||
5:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
7:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
8:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
9:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
7:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
8:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
9:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
6:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["experimental",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["experimental",{"children":["__PAGE__",{},[["$L1",["$","div",null,{"className":"rounded-xl border bg-card text-card-foreground shadow","children":[["$","div",null,{"className":"flex flex-col space-y-1.5 p-6","children":[["$","h3",null,{"className":"font-semibold leading-none tracking-tight","children":"Experimental"}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"This is an experimental page."}]]}],["$","div",null,{"className":"p-6 pt-0","children":["$","p",null,{"children":"Whoops! Theres nothing here yet..."}]}]]}],null],null],null]},[[null,["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","experimental","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":{}}]],null],null]},[[null,["$","$L5",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$6"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L7",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L8",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$L9",null,{}]]}]}]],null],null],["$La",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["experimental",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["experimental",{"children":["__PAGE__",{},[["$L1",["$","div",null,{"className":"rounded-xl border bg-card text-card-foreground shadow","children":[["$","div",null,{"className":"flex flex-col space-y-1.5 p-6","children":[["$","h3",null,{"className":"font-semibold leading-none tracking-tight","children":"Experimental"}],["$","p",null,{"className":"text-sm text-muted-foreground","children":"This is an experimental page."}]]}],["$","div",null,{"className":"p-6 pt-0","children":["$","p",null,{"children":"Whoops! Theres nothing here yet..."}]}]]}],null],null],null]},[[null,["$","$L2",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","experimental","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":{}}]],null],null]},[[null,["$","$L5",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$6"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L7",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L8",null,{"children":["$","$L3",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L4",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$L9",null,{}]]}]}]],null],null],["$La",null]]]]
|
||||
a:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[98496,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","5342","static/chunks/app/dashboard/experimental/layout-16b6cf36e2f299c3.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["experimental",{"children":["quecwatch",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["experimental",{"children":["quecwatch",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","experimental","children","quecwatch","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","experimental","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["experimental",{"children":["quecwatch",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["experimental",{"children":["quecwatch",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","experimental","children","quecwatch","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","experimental","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,12 +1,12 @@
|
||||
2:I[78073,[],"ClientPageRoot"]
|
||||
3:I[20369,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","3197","static/chunks/d5b5b10f-bbbd54ceb46b1d6c.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","4491","static/chunks/4491-e84291153712f394.js","1021","static/chunks/1021-8a5d9a6f5e16f2d1.js","8444","static/chunks/8444-2d581f5a1ed300a2.js","5883","static/chunks/app/dashboard/home/page-360e1da5d316e7f5.js"],"default",1]
|
||||
3:I[20369,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","3197","static/chunks/d5b5b10f-bbbd54ceb46b1d6c.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","4491","static/chunks/4491-e84291153712f394.js","1021","static/chunks/1021-8a5d9a6f5e16f2d1.js","8444","static/chunks/8444-2d581f5a1ed300a2.js","5883","static/chunks/app/dashboard/home/page-ee548d1cf68ee417.js"],"default",1]
|
||||
4:I[16102,[],""]
|
||||
5:I[22609,[],""]
|
||||
6:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
8:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
9:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
a:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
8:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
9:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
a:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["home",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["home",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","home","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L8",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$La",null,{}]]}]}]],null],null],["$Lb",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["home",{"children":["__PAGE__",{}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["home",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","home","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L8",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L9",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$La",null,{}]]}]}]],null],null],["$Lb",null]]]]
|
||||
b:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -1,13 +1,13 @@
|
||||
2:I[78073,[],"ClientPageRoot"]
|
||||
3:I[12825,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","2072","static/chunks/2072-6b7bff13a5bdf6cc.js","7291","static/chunks/app/dashboard/settings/general/page-e67e60cfe3296e3c.js"],"default",1]
|
||||
3:I[12825,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","2072","static/chunks/2072-6b7bff13a5bdf6cc.js","7291","static/chunks/app/dashboard/settings/general/page-cb614a683400841e.js"],"default",1]
|
||||
4:I[16102,[],""]
|
||||
5:I[22609,[],""]
|
||||
6:I[83746,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","813","static/chunks/app/dashboard/settings/layout-7bc53986b34ea3f5.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["settings",{"children":["general",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["settings",{"children":["general",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children","general","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["settings",{"children":["general",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["settings",{"children":["general",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children","general","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
@@ -4,10 +4,10 @@
|
||||
5:I[22609,[],""]
|
||||
6:I[83746,["6509","static/chunks/6509-9ee8afe5e5b56e4d.js","813","static/chunks/app/dashboard/settings/layout-7bc53986b34ea3f5.js"],"default",1]
|
||||
8:I[65213,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","4491","static/chunks/4491-e84291153712f394.js","6136","static/chunks/6136-23dd132652ecafea.js","7663","static/chunks/app/dashboard/layout-85e843fd5a7e2223.js"],"default",1]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
b:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
9:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
a:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
b:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
7:{}
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["dashboard",{"children":["settings",{"children":["security",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["settings",{"children":["security",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children","security","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["dashboard",{"children":["settings",{"children":["security",{"children":["__PAGE__",{}]}]}]}]},"$undefined","$undefined",true],["",{"children":["dashboard",{"children":["settings",{"children":["security",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children","security","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[null,["$","$L6",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children","settings","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[null,["$","$L8",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","dashboard","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}],"params":"$7"}]],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L9",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$La",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$Lb",null,{}]]}]}]],null],null],["$Lc",null]]]]
|
||||
c:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
2:I[49970,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","217","static/chunks/217-cce5d4a80b177785.js","5420","static/chunks/5420-12177fdbcea89b5b.js","6509","static/chunks/6509-9ee8afe5e5b56e4d.js","1021","static/chunks/1021-8a5d9a6f5e16f2d1.js","6136","static/chunks/6136-23dd132652ecafea.js","1931","static/chunks/app/page-c3cae30fde68fd7e.js"],"default"]
|
||||
3:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
4:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
3:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
4:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
5:I[16102,[],""]
|
||||
6:I[22609,[],""]
|
||||
7:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1",["$","div",null,{"className":"grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]","children":["$","main",null,{"className":"flex flex-col gap-8 row-start-2 items-center sm:items-start","children":["$","$L2",null,{}]}]}],null],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L3",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$L7",null,{}]]}]}]],null],null],["$L8",null]]]]
|
||||
7:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["__PAGE__",{}]},"$undefined","$undefined",true],["",{"children":["__PAGE__",{},[["$L1",["$","div",null,{"className":"grid grid-rows-[20px_1fr_20px] items-center justify-items-center min-h-screen p-8 pb-20 gap-16 sm:p-20 font-[family-name:var(--font-geist-sans)]","children":["$","main",null,{"className":"flex flex-col gap-8 row-start-2 items-center sm:items-start","children":["$","$L2",null,{}]}]}],null],null],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L3",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L4",null,{"children":["$","$L5",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L6",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$L7",null,{}]]}]}]],null],null],["$L8",null]]]]
|
||||
8:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -2,9 +2,9 @@
|
||||
3:I[55114,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","598","static/chunks/598-37a268c60ee2f48f.js","2626","static/chunks/app/login/page-bb2e68999861edef.js"],"default",1]
|
||||
4:I[16102,[],""]
|
||||
5:I[22609,[],""]
|
||||
6:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"ThemeProvider"]
|
||||
7:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"TooltipProvider"]
|
||||
8:I[62357,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","3131","static/chunks/3131-90588f130914b471.js","3185","static/chunks/app/layout-2ce10dc857bad7b2.js"],"Toaster"]
|
||||
0:["aOjLpCdSiaoniCvuvCM_a",[[["",{"children":["login",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["login",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","login","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L6",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L7",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$L8",null,{}]]}]}]],null],null],["$L9",null]]]]
|
||||
6:I[40108,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"ThemeProvider"]
|
||||
7:I[78287,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"TooltipProvider"]
|
||||
8:I[10447,["792","static/chunks/84fbfe7f-f4d35e8642f5f806.js","4059","static/chunks/4059-9aec608b956e2da7.js","8714","static/chunks/8714-2a49f958b43b9e79.js","5420","static/chunks/5420-12177fdbcea89b5b.js","7503","static/chunks/7503-03adcad21246588e.js","3185","static/chunks/app/layout-535ba4c519774bd3.js"],"Toaster"]
|
||||
0:["d9Re4aUm_s6AMG1n5GpRt",[[["",{"children":["login",{"children":["__PAGE__",{}]}]},"$undefined","$undefined",true],["",{"children":["login",{"children":["__PAGE__",{},[["$L1",["$","$L2",null,{"props":{"params":{},"searchParams":{}},"Component":"$3"}],null],null],null]},[null,["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children","login","children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":"$undefined","notFoundStyles":"$undefined"}]],null]},[[[["$","link","0",{"rel":"stylesheet","href":"/_next/static/css/cc2cb7f3982207da.css","precedence":"next","crossOrigin":"$undefined"}]],["$","html",null,{"lang":"en","suppressHydrationWarning":true,"children":["$","body",null,{"className":" font-euclid antialiased","children":[["$","$L6",null,{"attribute":"class","defaultTheme":"system","enableSystem":true,"disableTransitionOnChange":true,"children":["$","$L7",null,{"children":["$","$L4",null,{"parallelRouterKey":"children","segmentPath":["children"],"error":"$undefined","errorStyles":"$undefined","errorScripts":"$undefined","template":["$","$L5",null,{}],"templateStyles":"$undefined","templateScripts":"$undefined","notFound":[["$","title",null,{"children":"404: This page could not be found."}],["$","div",null,{"style":{"fontFamily":"system-ui,\"Segoe UI\",Roboto,Helvetica,Arial,sans-serif,\"Apple Color Emoji\",\"Segoe UI Emoji\"","height":"100vh","textAlign":"center","display":"flex","flexDirection":"column","alignItems":"center","justifyContent":"center"},"children":["$","div",null,{"children":[["$","style",null,{"dangerouslySetInnerHTML":{"__html":"body{color:#000;background:#fff;margin:0}.next-error-h1{border-right:1px solid rgba(0,0,0,.3)}@media (prefers-color-scheme:dark){body{color:#fff;background:#000}.next-error-h1{border-right:1px solid rgba(255,255,255,.3)}}"}}],["$","h1",null,{"className":"next-error-h1","style":{"display":"inline-block","margin":"0 20px 0 0","padding":"0 23px 0 0","fontSize":24,"fontWeight":500,"verticalAlign":"top","lineHeight":"49px"},"children":"404"}],["$","div",null,{"style":{"display":"inline-block"},"children":["$","h2",null,{"style":{"fontSize":14,"fontWeight":400,"lineHeight":"49px","margin":0},"children":"This page could not be found."}]}]]}]}]],"notFoundStyles":[]}]}]}],["$","$L8",null,{}]]}]}]],null],null],["$L9",null]]]]
|
||||
9:[["$","meta","0",{"name":"viewport","content":"width=device-width, initial-scale=1"}],["$","meta","1",{"charSet":"utf-8"}],["$","title","2",{"children":"QuecManager"}],["$","meta","3",{"name":"description","content":"Simpleadmin but better!"}],["$","link","4",{"rel":"icon","href":"/favicon.ico","type":"image/x-icon","sizes":"16x16"}]]
|
||||
1:null
|
||||
|
||||
Reference in New Issue
Block a user