DeleiGuo
DeleiGuo
I had the same problem.I will try to fix it and submit a PR to `FastExcel` 同样遇到了这个问题。我将尝试修复并提交`PR`到 `FastExcel` 库
Apache POI 中`XSSF `和`SXSSFSheet`支持设置标签颜色(`setTabColor`方法),可以自定义一个`WriteHandler`来对`Sheet`进行设置, ```java public class EasyExcelWriteHandler implements SheetWriteHandler { @Override public void afterSheetCreate(SheetWriteHandlerContext context) { Sheet cacheedSheet = context.getWriteSheetHolder().getCachedSheet(); if (ExcelTypeEnum.XLSX.equals(context.getWriteContext().writeWorkbookHolder().getExcelType())) { SXSSFSheet sxssfSheet = (SXSSFSheet) cacheedSheet; sxssfSheet.setTabColor(IndexedColors.RED.getIndex());...
The main reason for the problem is the missing `dolphinscheduler-storage-hdfs` plugins. Since the default storage type is `LOCAL`, you need to install the `dolphinscheduler-storage-hdfs` plugin first. ## Temporary Solution 1....
> docker-compose deployment needs to be optimized. Hi, @SbloodyS Currently, the `plugins` folder in the provided image is empty. We may need to improve the documentation or include plugin `dolphinscheduler-storage-hdfs`...
Hi, @Kylin-Guo Thank you for your feedback. Within the system's label management functionality, does a label with an empty value exist?
This does appear to be an issue, and we will reproduce it in the latest version.
The issue has been reproduced and confirmed to be a issue. and the same issue does indeed occur on other pages. ### Steps To Reproduce 1. add a new inhibit...
As there are many pages involved, and I'm not a professional front-end developer, I will make a preliminary attempt and assess this issue. My preliminary assessment suggests this relates to...
I raised a PR to improve the experience of selecting tags, but it did not resolve this issue.
I believe that selecting the same key is currently not permitted. Based on my understanding of the code logic, the frontend use a `Record` type to store the selected tag...