Tracker: Add project issue list view (#2012)

Signed-off-by: Dvinyanin Alexandr <dvinyanin.alexandr@gmail.com>
This commit is contained in:
Alex
2022-06-06 20:44:21 +07:00
committed by GitHub
parent dbc25d6ae9
commit e47d03d87a
9 changed files with 127 additions and 54 deletions
+7 -2
View File
@@ -12,10 +12,11 @@
// See the License for the specific language governing permissions and
// limitations under the License.
//
import type { IntlString } from '@anticrm/platform'
import type { IntlString, Resource } from '@anticrm/platform'
import { mergeIds } from '@anticrm/platform'
import tracker, { trackerId } from '../../tracker/lib'
import { AnyComponent } from '@anticrm/ui'
import { Space } from '@anticrm/core'
export default mergeIds(trackerId, tracker, {
string: {
@@ -187,6 +188,10 @@ export default mergeIds(trackerId, tracker, {
ProjectMembersPresenter: '' as AnyComponent,
ProjectStatusPresenter: '' as AnyComponent,
SetDueDateActionPopup: '' as AnyComponent,
SetParentIssueActionPopup: '' as AnyComponent
SetParentIssueActionPopup: '' as AnyComponent,
EditProject: '' as AnyComponent
},
function: {
ProjectVisible: '' as '' as Resource<(spaces: Space[]) => boolean>
}
})