Compare commits

...

1 Commits
1.7.0 ... 1.6.2

Author SHA1 Message Date
Alireza Ahmadi
905ffda848 v1.6.2 2023-12-11 14:06:59 +01:00
5 changed files with 7 additions and 10 deletions

View File

@@ -3,7 +3,9 @@ WORKDIR /app
ARG TARGETARCH
RUN apk --no-cache --update add build-base gcc wget unzip
COPY . .
RUN env CGO_ENABLED=1 go build -o build/x-ui main.go
ENV CGO_ENABLED=1
ENV CGO_CFLAGS="-D_LARGEFILE64_SOURCE"
RUN go build -o build/x-ui main.go
RUN ./DockerInitFiles.sh "$TARGETARCH"
FROM alpine

View File

@@ -1 +1 @@
1.6.1
1.6.2

View File

@@ -802,7 +802,7 @@ func (s *SubService) genRemark(inbound *model.Inbound, email string, extra strin
orders['i'] = inbound.Remark
}
if len(extra) > 0 {
orders['e'] = extra
orders['o'] = extra
}
var remark []string

View File

@@ -55,7 +55,7 @@ style attribute {
}
.ant-table-tbody > tr > td,
.ant-table-thead > tr > th {
padding: 16px;
padding: 12px 16px;
overflow-wrap: break-word;
}
.ant-table-thead > tr > th {
@@ -399,11 +399,6 @@ style attribute {
background-color: rgb(255, 127, 127);
}
.ant-table-tbody > tr > td,
.ant-table-thead > tr > th {
padding: 16px 5px;
}
.ant-table-expand-icon-th,
.ant-table-row-expand-icon-cell {
width: 30px;

View File

@@ -423,7 +423,7 @@
:columns="isMobile ? innerMobileColumns : innerColumns"
:data-source="getInboundClients(record)"
:pagination=pagination(getInboundClients(record))
:style="isMobile ? 'margin: -16px -5px -17px;' : 'margin-left: 10px;'">
style="margin: -12px -6px -13px;">
{{template "client_table"}}
</a-table>
</template>