private propertyFilter()

in powerbi-visual-builder/src_extension/builder.ts [331:339]


  private propertyFilter(property: PowerBIProperty) {
    if (
      property.target.attribute === "visible" ||
      property.target.property === "visible"
    ) {
      return false;
    }
    return true;
  }