You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@streampark.apache.org by GitBox <gi...@apache.org> on 2022/11/17 02:09:36 UTC

[GitHub] [incubator-streampark] wangsizhu0504 opened a new pull request, #2034: [improve]: fix header and dependency style

wangsizhu0504 opened a new pull request, #2034:
URL: https://github.com/apache/incubator-streampark/pull/2034

   
   ## What changes were proposed in this pull request
   1. Border is added at the bottom of the dark mode header
   <img width="1418" alt="iShot_2022-11-17_10 01 08" src="https://user-images.githubusercontent.com/39726513/202335782-1f272f5d-8023-4e20-85c3-b7e8ed9f3f68.png">
   
   2. fix slogan extrusion problem 
   <img width="1416" alt="iShot_2022-11-17_10 02 42" src="https://user-images.githubusercontent.com/39726513/202336055-16b0e588-e059-487b-8d67-8bacb9cbbcc8.png">
   <img width="1414" alt="iShot_2022-11-17_10 03 09" src="https://user-images.githubusercontent.com/39726513/202336061-727a025c-76f1-44e3-9ced-82284e9d18fb.png">
   
   3. fix dependency button position
   	When there are uploaded files, the apply button may move down
   
   <img width="979" alt="iShot_2022-11-17_10 04 10" src="https://user-images.githubusercontent.com/39726513/202336190-c832b9e9-e83f-475b-8358-3b53933bedc8.png">
   
   4. token list 
    	It is found that there is no username query field in the back-end interface (query conditions exist in the old webapp)
   
   <img width="1391" alt="iShot_2022-11-17_10 05 23" src="https://user-images.githubusercontent.com/39726513/202336364-af872f5c-c45d-47fd-9ae9-7e45922782ea.png">
   
   ```java
       @PostMapping(value = "list")
       @RequiresPermissions("token:view")
       public RestResponse tokenList(RestRequest restRequest, AccessToken accessToken) {
           IPage<AccessToken> accessTokens = accessTokenService.findAccessTokens(accessToken, restRequest);
           return RestResponse.success(accessTokens);
       }
   ```
   ```java
   public class RestRequest implements Serializable {
   
       private static final long serialVersionUID = -4869594085374385813L;
   
       private int pageSize = 10;
       private int pageNum = 1;
   
       private String sortField;
       private String sortOrder;
   }
   ```
   old webapp
   <img width="864" alt="iShot_2022-11-17_10 08 52" src="https://user-images.githubusercontent.com/39726513/202336914-f7aba64f-336c-4201-bbc8-d126edcd1bc2.png">
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [incubator-streampark] wolfboys merged pull request #2034: [improve]: fix header and dependency style

Posted by GitBox <gi...@apache.org>.
wolfboys merged PR #2034:
URL: https://github.com/apache/incubator-streampark/pull/2034


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@streampark.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org