Skip to content

Commit d358179

Browse files
committed
fix margin, menu on left
1 parent 449c3db commit d358179

File tree

20 files changed

+252
-251
lines changed

20 files changed

+252
-251
lines changed

web/api/webrpc/sector.go

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ package webrpc
22

33
import (
44
"context"
5-
"fmt"
65
"strconv"
76
"strings"
87
"time"
@@ -194,8 +193,6 @@ func (a *WebRPC) SectorInfo(ctx context.Context, sp string, intid int64) (*Secto
194193
return nil, xerrors.Errorf("invalid sp")
195194
}
196195

197-
fmt.Println("SPID", spid)
198-
199196
si := &SectorInfo{
200197
SpID: spid,
201198
Miner: maddr.String(),
@@ -226,10 +223,6 @@ func (a *WebRPC) SectorInfo(ctx context.Context, sp string, intid int64) (*Secto
226223
return nil, xerrors.Errorf("failed to fetch pipeline task info: %w", err)
227224
}
228225

229-
if len(tasks) == 0 {
230-
fmt.Println("NO PIPELINE")
231-
}
232-
233226
// Fetch SnapDeals pipeline data
234227
var snapTasks []SnapPipelineTask
235228

@@ -265,7 +258,6 @@ func (a *WebRPC) SectorInfo(ctx context.Context, sp string, intid int64) (*Secto
265258

266259
var sle *sectorListEntry
267260
if len(tasks) > 0 {
268-
fmt.Println("FOUND THE PIPELINE")
269261
task := tasks[0]
270262
if task.PreCommitMsgCid != nil {
271263
si.PreCommitMsg = *task.PreCommitMsgCid

web/static/config/edit.html

Lines changed: 151 additions & 150 deletions
Large diffs are not rendered by default.

web/static/gc/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
<body style="visibility:hidden" data-bs-theme="dark">
1313
<curio-ux>
14-
<div class="page">
14+
<div class="page" style="margin-left: 20px; margin-right: 10px">
1515
<section class="section">
1616
<div class="row">
1717
<h1>Storage GC Info</h1>

web/static/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
</head>
4747
<body style="visibility:hidden">
4848
<curio-ux>
49-
<div class="page">
49+
<div class="page" style="margin-left: 20px; margin-right: 10px">
5050
<div class="row">
5151
<div class="col-md-auto" style="max-width: 1000px">
5252
<div class="info-block">

web/static/pages/actor/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</head>
1111
<body style="visibility:hidden" data-bs-theme="dark">
1212
<curio-ux>
13-
<div class="page">
13+
<div class="page" style="margin-left: 20px; margin-right: 10px">
1414
<section class="section">
1515
<div class="row">
1616
<h1>Miner Info</h1>

web/static/pages/ipni/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
</head>
1010
<body style="visibility:hidden; background:rgb(11, 22, 34)" data-bs-theme="dark">
1111
<curio-ux>
12-
<div class="page">
12+
<div class="page" style="margin-left: 20px; margin-right: 10px">
1313
<section class="section">
1414
<div class="row">
1515
<h1>IPNI</h1>

web/static/pages/market-settings/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</head>
1212
<body style="visibility:hidden; background:rgb(11, 22, 34)" data-bs-theme="dark">
1313
<curio-ux>
14-
<div class="page">
14+
<div class="page" style="margin-left: 20px; margin-right: 10px">
1515
<section class="section">
1616
<div class="row">
1717
<h1>Market Setting</h1>

web/static/pages/market/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</head>
1313
<body style="visibility:hidden; background:rgb(11, 22, 34)" data-bs-theme="dark">
1414
<curio-ux>
15-
<div class="page">
15+
<div class="page" style="margin-left: 20px; margin-right: 10px">
1616
<section class="section" style="padding-bottom: 50px">
1717
<div class="row">
1818
<h1>Storage Market</h1>

web/static/pages/mk12-deal/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
<body style="visibility:hidden" data-bs-theme="dark">
1212
<curio-ux>
13-
<div class="page">
13+
<div class="page" style="margin-left: 20px; margin-right: 10px">
1414
<section class="section">
1515
<div class="row">
1616
<div class="col-md-auto" style="max-width: 95%">

web/static/pages/mk12-deals/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
</head>
1212
<body style="visibility:hidden; background:rgb(11, 22, 34)" data-bs-theme="dark">
1313
<curio-ux>
14-
<div class="page">
14+
<div class="page" style="margin-left: 20px; margin-right: 10px">
1515
<section class="section">
1616
<div class="row">
1717
<h1>Storage Deals</h1>

0 commit comments

Comments
 (0)