无法在 angular material 中使用鼠标复制选项设置值

Cannot copy option set value using mouse in angular material

当我将 mat-select 设置为禁用时,我无法使用鼠标从该字段复制值。当我尝试从文本输入等其他禁用字段复制值时,此问题不存在。有什么办法吗?

所以基于这个答案:Prevent copying text in web-page 我将这段代码添加到我的主 style.css 文件中,它现在可以工作了

.mat-select-disabled .mat-select-trigger {
  user-select: all !important;
}