You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the first tab, in the upper left corner, chose if you want to use a local folder to synchronize it.
15
20
* It is not required so if you don't have clone the BIATemplate locally select the first radio button "Use the BIAtemplate GitHub repository" the local folder will be : C:\Users\YourLogin\AppData\Local\BIA.ToolKit\BIA.ToolKit\1.0.0\BIATemplate\Repo
Copy file name to clipboardExpand all lines: docs/50-BestPractices/10-GitBranchingBestPractices.md
+5-1
Original file line number
Diff line number
Diff line change
@@ -21,10 +21,14 @@ The strategy depend on the size of the project:
21
21
- Standard usage : work on Develop Branch
22
22
- For huge feature you can create a dedicated branch.
23
23
24
-
## Project more the 2 developers:
24
+
## Project with more the 2 developers:
25
25
- Standard usage : Develop all your Features on dedicated Branch
26
26
- For very small change you can work directly on Develop Branch
27
27
28
+
## Project with support (including feature) on last delivery
29
+
- The notion of "hot feature" is introduce to be able to deliver small feature (less than 1 month) before the delivery of the next version (every 6 month).
5.Infunction checkHaveFilter, if you use this.tableConfiguration.advancedFilter in the if equality values, replace it like that :
145
+
```ts
146
+
if (this.tableConfiguration.advancedFilter&&...)
147
+
```
148
+
becomes
149
+
```ts
150
+
if (!!this.tableConfiguration.advancedFilter && ...)
151
+
```
152
+
Thisisduetotheanytypenot being falsy even when undefined.
153
+
6. in your personalized advanced filter component, make sure to reset the advanced filter form when the advancedFilter input changes in ngChanges even when undefined or the values of advanced filter won't be reset when you select a view that has no advanced filters.
0 commit comments