code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/package.json b/package.json "name": "pusher-js",
"version": "4.0.0",
"description": "Pusher JavaScript library for browsers, React Native, NodeJS and web workers",
- "main": "dist/web/pusher.js",
+ "main": "dist/node/pusher.js",
+ "browser": "dist/web/pusher.js",
"scripts": {
"test": "echo \"Error: no test... | 14 |
diff --git a/token-metadata/0x488E0369f9BC5C40C002eA7c1fe4fd01A198801c/metadata.json b/token-metadata/0x488E0369f9BC5C40C002eA7c1fe4fd01A198801c/metadata.json "symbol": "GOF",
"address": "0x488E0369f9BC5C40C002eA7c1fe4fd01A198801c",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/plots/polar/set_convert.js b/src/plots/polar/set_convert.js @@ -33,19 +33,17 @@ var isFullCircle = Lib.isFullCircle;
* - 'g' for geometric coordinates and
* - 't' for angular ticks
*
- * Radial axis coordinate systems flow:
- * - d2c (in calc) just like for cartesian axes
- * - c2g (in plot) translates... | 7 |
diff --git a/public/javascripts/Admin/src/Admin.js b/public/javascripts/Admin/src/Admin.js @@ -927,7 +927,7 @@ function Admin(_, $, c3, turf) {
$("#audit-std").html((stats.std).toFixed(2) + " Street Audits");
- var histOpts = {xAxisTitle:"# Street Audits per Day", xDomain:[0, stats.max], width:250, binStep:50};
+ var h... | 5 |
diff --git a/src/parser/Lexer.mjs b/src/parser/Lexer.mjs @@ -9,6 +9,7 @@ import {
KeywordLookup,
isKeywordRaw,
} from './tokens.mjs';
+import { surroundingAgent } from '../engine.mjs';
const isUnicodeIDStart = (c) => c && isUnicodeIDStartRegex.test(c);
const isUnicodeIDContinue = (c) => c && isUnicodeIDContinueRegex.te... | 3 |
diff --git a/src/data/__test-data.js b/src/data/__test-data.js @@ -5,11 +5,13 @@ import type { ValueGenerator } from "@rgbboy/testcheck";
import { DateTime } from "luxon";
import { FORMAT_CONTENTFUL_ISO, FORMAT_EUROPEAN_DATE } from "../lib/date";
import type { Maybe } from "../lib/maybe";
+import { some } from "../lib/... | 0 |
diff --git a/src/encoded/schemas/donor.json b/src/encoded/schemas/donor.json "items": {
"type": "string",
"description": "External identifier that uniquely identify the donor of the sample, e.g. for strains it might be a strain identifier at a repository or a de-identified donor ID for a person.",
- "pattern": "^(BDSC:... | 0 |
diff --git a/config/config.js b/config/config.js @@ -47,11 +47,11 @@ export default {
routes: routerConfig,
proxy: {
'/console': {
- target: 'http://127.0.0.1:8000',
+ target: 'http://4000.gr7c60a0.2c9v614j.17f4cc.grapps.cn',
changeOrigin: true
},
'/data': {
- target: 'http://127.0.0.1:7070',
+ target: 'http://4000.gr7... | 1 |
diff --git a/src/components/SideNavMobile/SideNavMobile.styles.js b/src/components/SideNavMobile/SideNavMobile.styles.js @@ -8,16 +8,15 @@ import type { ComponentType } from 'react';
export const MobileNavWrapper: ComponentType<*> = (() => {
return styled.div`
position: relative;
- margin-top: 12px;
- margin-bottom: -1... | 7 |
diff --git a/layouts/partials/fragments/list.html b/layouts/partials/fragments/list.html </a>
</h5>
{{- end -}}
- {{- if and (not $self.Params.tiled) (eq $self.Params.display_date false) }}
+ {{- if and (not $self.Params.tiled) $self.Params.display_date }}
{{- range $content_page -}}
{{- partial "helpers/publish-date.h... | 2 |
diff --git a/.github/workflows/windows_test_npm_install.yml b/.github/workflows/windows_test_npm_install.yml @@ -134,10 +134,14 @@ jobs:
run: git config --global core.autocrlf input
timeout-minutes: 2
+ # Set NVS location:
+ - name: 'Set NVS location'
+ run: echo "NVS_HOME=$HOME/.nvs" >> $GITHUB_ENV
+ timeout-minutes: ... | 12 |
diff --git a/__tests__/components/NetworkSwitch.test.js b/__tests__/components/NetworkSwitch.test.js import React from 'react'
import { shallow } from 'enzyme'
-import NetworkSwitch from '../../app/components/Settings/NetworkSwitch'
+import NetworkSwitch from '../../app/components/Settings/NetworkSwitch/NetworkSwitch'
... | 1 |
diff --git a/CHANGELOG.md b/CHANGELOG.md # Changelog
-## v1.8.2 (2020-2-13)
+## v1.8.2 (2020-2-17)
* Added new device names to the `t.resizeWindowToFitDevice` action ([#3767](https://github.com/DevExpress/testcafe/issues/3767))
* You can now use several reporters with no output stream specified if only one reporter wri... | 1 |
diff --git a/README.md b/README.md @@ -194,9 +194,10 @@ and which gives information about the app for the Launcher.
"name":"Short Name", // for Bangle.js menu
"icon":"*7chname", // for Bangle.js menu
"src":"-7chname", // source file
- "type":"widget/clock/app", // optional, default "app"
+ "type":"widget/clock/app/boot... | 3 |
diff --git a/admin-base/ui.apps/src/main/content/jcr_root/apps/field/iconbrowser/template.vue b/admin-base/ui.apps/src/main/content/jcr_root/apps/field/iconbrowser/template.vue <i class="material-icons">insert_drive_file</i>
</button>
<div class="icon">
- <i :class="getIconFamily(value)">{{value}}</i>
+ <i v-bind:class... | 11 |
diff --git a/package.json b/package.json "build:lib": "babel -d lib src --ignore '**/__tests__/**'",
"lint": "eslint --report-unused-disable-directives src",
"prepublish": "npm run build",
+ "prettier:check": "prettier --list-different 'src/**/*.js'",
+ "prettier:fix": "prettier --write 'src/**/*.js'",
"test": "jest"
}... | 12 |
diff --git a/packages/app/src/components/Admin/LegacySlackIntegration/SlackConfiguration.jsx b/packages/app/src/components/Admin/LegacySlackIntegration/SlackConfiguration.jsx import React from 'react';
+
import PropTypes from 'prop-types';
-import { withTranslation } from 'react-i18next';
+import { useTranslation } fro... | 14 |
diff --git a/lib/collector/facts.js b/lib/collector/facts.js var a = require('async')
var fetchSystemInfo = require('../system-info')
+var logger = require('../logger').child({component: 'facts'})
var parse_labels = require('../util/label-parser')
@@ -13,17 +14,18 @@ function facts(agent, callback) {
environment: agent... | 7 |
diff --git a/assets/src/libraries/BookBorrowers.test.jsx b/assets/src/libraries/BookBorrowers.test.jsx @@ -5,7 +5,7 @@ import Avatar from '@material-ui/core/Avatar';
import BookBorrowers from './BookBorrowers';
import { someBookWithNoAvailableCopies, someBookWithAvailableCopies } from '../../test/booksHelper';
-const s... | 10 |
diff --git a/src/article/shared/SupplementaryFileComponent.js b/src/article/shared/SupplementaryFileComponent.js @@ -23,8 +23,8 @@ export default class SupplementaryFileComponent extends NodeComponent {
// FIXME: not using a dedicated component for the href model means that this is not updated
$$('div').addClass('se-hr... | 10 |
diff --git a/test/renderer/Message.test.js b/test/renderer/Message.test.js @@ -11,7 +11,7 @@ describe('Message rendering', () => {
expect(message.getBaseMessage()).toMatchSnapshot();
});
- test('works for messages without', async () => {
+ test('works for messages without footer', async () => {
const message = new Mess... | 7 |
diff --git a/_data/conferences.yml b/_data/conferences.yml year: 2022
id: uai22
link: https://www.auai.org/uai2022/
- deadline: '2021-02-25 23:59:59'
+ deadline: '2022-02-25 23:59:59'
timezone: UTC
date: August 1-5, 2022
place: Eindhoven, The Netherlands
| 1 |
diff --git a/constants.js b/constants.js @@ -52,3 +52,6 @@ export const activateMaxTime = 750;
export const useMaxTime = 750;
export const minFov = 60;
export const maxFov = 120;
+export const groundFriction = 0.28;
+export const airFriction = groundFriction;
+export const flyFriction = 0.5;
\ No newline at end of file... | 0 |
diff --git a/lang/de.json b/lang/de.json "GURPS.modifierExtraEffort": "Extra Anstrengung",
"GURPS.modifierMightyBlow": "Schaden (Mighty Blow)",
"GURPS.modifierHeroicCharge": "Heroic Charge",
- "GURPS.modifierWillCheck": "WILL ens Wurfum weiter zu zielen",
+ "GURPS.modifierWillCheck": "WILL Wurf um weiter zu zielen",
"G... | 3 |
diff --git a/README.md b/README.md <br>
<p align="center">
- <a href="https://backpackforlaravel.com" title="Backpack Logo"><img src="https://backpackforlaravel.com/presentation/img/backpack/logos/backpack_logo_color.png" style="max-width: 600px"></a>
+ <a href="https://backpackforlaravel.com" title="Backpack Logo"><im... | 3 |
diff --git a/src/scss/_common.scss b/src/scss/_common.scss .uppy-Root {
all: initial;
box-sizing: border-box;
- font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
- Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, sans-serif;
+ font-family: $font-family-base;
line-height: 1;
-... | 11 |
diff --git a/app/webpack/taxa/show/actions/taxon.js b/app/webpack/taxa/show/actions/taxon.js +import _ from "lodash";
import {
fetchTaxon,
setCount,
@@ -27,13 +28,13 @@ export function fetchTaxonAssociates( t ) {
dispatch( resetObservationsState( ) );
const s = getState( );
const taxon = t || s.taxon.taxon;
- if ( taxo... | 12 |
diff --git a/src/tokens/eth/0xa19bbef64eff0d060a653e4df10a57b6d8006d3e.json b/src/tokens/eth/0xa19bbef64eff0d060a653e4df10a57b6d8006d3e.json "decimals": 18,
"website": "https://www.enegra.com",
"logo": {
- "src": "https://ipfs.robotinfra.com/ipfs/QmaXswmmxvQeha4ysLZ3KaPVaC8DAQLc7hLz1484YX1kb8",
- "width": "64px",
- "he... | 4 |
diff --git a/README.md b/README.md @@ -22,6 +22,7 @@ npm run test
```
- [Code Coverage Statistics](https://github.com/11ty/eleventy/blob/master/docs/coverage.md)
+- [Benchmark for Performance Regressions](https://github.com/11ty/eleventy-benchmark)
## Major Roadmapped Features
| 0 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,12 @@ To see all merged commits on the master branch that will be part of the next plo
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.55.2] -- 2020-09-08
+
+### Fixed
+ - Fix `automargin` when `ticklabelmode` is set to "period" [#5134]
+
+
## [1.55... | 3 |
diff --git a/.circleci/config.yml b/.circleci/config.yml @@ -131,14 +131,11 @@ commands:
for i in {1..3}; do npm test && break; done
notify_slack:
description: "Notify slack"
- parameters:
- target:
- type: string
steps:
- slack/status:
include_project_field: false
- failure_message: "<< parameters.target >> release fa... | 3 |
diff --git a/component/templates/ng1/component.js b/component/templates/ng1/component.js ; (function (ng) {
'use strict';
- ng.module('<%= appName %>', [])
+ ng.module('<%= appName %>')
.component('<%= name %>', {
templateUrl: '<%= feature %>/templates/<%= name %>.html',
controller: [function () {
| 2 |
diff --git a/articles/tokens/references/jwt-structure.md b/articles/tokens/references/jwt-structure.md @@ -96,5 +96,5 @@ How ever you use a JWT, you must [check its signature](/tokens/guides/validate-j
* [Validate JSON Web Tokens](/tokens/guides/validate-jwts)
* [Locate JSON Web Token Key Sets](/tokens/guides/locate-jw... | 1 |
diff --git a/packages/next/README.md b/packages/next/README.md <p align="center">
<a aria-label="Vercel logo" href="https://vercel.com">
- <img src="https://img.shields.io/badge/MADE%20BY%20Vercel-000000.svg?style=for-the-badge&logo=ZEIT&labelColor=000000&logoWidth=20">
+ <img src="https://img.shields.io/badge/MADE%20B... | 7 |
diff --git a/token-metadata/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/metadata.json b/token-metadata/0x6F919D67967a97EA36195A2346d9244E60FE0dDB/metadata.json "symbol": "BLOC",
"address": "0x6F919D67967a97EA36195A2346d9244E60FE0dDB",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md @@ -110,3 +110,4 @@ Items have a source field, and this source field should be filled in. There is a
| Alien Archive 4 | AA4 pg. x | AA4 pg. 123 |
| Adventure path books | AP #x pg. y | AP #3 pg. 58 |
| Starfinder Society | SFS #x-y pg. z | SFS #1-2 pg. 23 |
+| Alien Card ... | 0 |
diff --git a/docs/faq.md b/docs/faq.md @@ -41,22 +41,24 @@ The actual number you provide to marbles is meaningless, go nuts.
<a name="ha"></a>
### Q. How can I create a HA(high-availability) setup
-The latest and greatest marbles already does this! Checkout the `fc wrangler` files: [high_availability.js](../utils/fc_wr... | 7 |
diff --git a/magda-web-client/src/Components/Dataset/Add/DatasetAddMetadataPage.tsx b/magda-web-client/src/Components/Dataset/Add/DatasetAddMetadataPage.tsx @@ -361,7 +361,7 @@ class NewDataset extends React.Component<Props, State> {
// Setting datasets as approved if
// approval flow is turned off
- if (config.feature... | 12 |
diff --git a/Gruntfile.js b/Gruntfile.js @@ -145,8 +145,6 @@ module.exports = function(grunt) {
urls: test_urls,
maxRetries: 3,
testname: 'Web SDK Tests',
- pollInterval: 10000,
- statusCheckAttempts: 100,
browsers: [].concat(
safari_browsers,
chrome_browsers,
| 2 |
diff --git a/site/rabbit.ent b/site/rabbit.ent @@ -15,7 +15,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
-<!ENTITY version-java-client "5.6.0">
+<!ENTITY version-java-client "5.7.0">
<... | 12 |
diff --git a/lib/shared/addon/components/cluster-driver/driver-eks/component.js b/lib/shared/addon/components/cluster-driver/driver-eks/component.js @@ -168,8 +168,6 @@ export default Component.extend(ClusterDriver, {
userData: DEFAULT_USER_DATA
};
- set()
-
set(ngConfig, 'launchTemplate', this.globalStore.createRecord... | 2 |
diff --git a/game.js b/game.js @@ -1904,6 +1904,7 @@ const gameManager = {
localPlayer.removeAction('activate');
},
setAvatarQuality(quality) {
+ const localPlayer = metaversefileApi.useLocalPlayer();
localPlayer.avatar.setQuality(quality);
},
playerDiorama: null,
| 0 |
diff --git a/sandbox/src/Consent.js b/sandbox/src/Consent.js @@ -3,7 +3,15 @@ import React from "react";
const executeSetConsentCommand = generalPurpose => () => {
window
.alloy("setConsent", {
+ consent: [
+ {
+ standard: "Adobe",
+ version: "1.0",
+ value: {
general: generalPurpose
+ }
+ }
+ ]
})
.catch(console.error... | 3 |
diff --git a/util.js b/util.js @@ -784,3 +784,8 @@ export function shuffle(array, rng = Math.random) {
return array;
}
+export const waitForFrame = () => new Promise(accept => {
+ requestAnimationFrame(() => {
+ accept();
+ });
+});
\ No newline at end of file
| 0 |
diff --git a/extensions/projection/README.md b/extensions/projection/README.md @@ -28,7 +28,6 @@ projections per Asset is not currently handled by this extension.
| Field Name | Type | Description |
| ---------------- | ------------------------ | ----------- |
| proj:epsg | integer\|null | **Required** [EPSG code](http... | 2 |
diff --git a/unlock-app/src/hooks/useEns.ts b/unlock-app/src/hooks/useEns.ts @@ -3,7 +3,6 @@ import { useState, useEffect } from 'react'
import configure from '../config'
const config = configure()
-const publicProvider = config.networks[1].publicProvider
export const getNameOrAddressForAddress = async (
_address: stri... | 4 |
diff --git a/src/js/utils.js b/src/js/utils.js @@ -102,7 +102,9 @@ export function includes(a, b) {
* @return {Boolean}
*/
export function isSingular(value) {
- return !!(value && value.isVirtual) || value instanceof Element
+ return (
+ !!(value && hasOwnProperty(value, 'isVirtual')) || value instanceof Element
+ )
}
... | 7 |
diff --git a/token-metadata/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/metadata.json b/token-metadata/0x57700244B20f84799a31c6C96DadFF373ca9D6c5/metadata.json "symbol": "TRUST",
"address": "0x57700244B20f84799a31c6C96DadFF373ca9D6c5",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/avatars/avatars.js b/avatars/avatars.js @@ -2244,6 +2244,7 @@ class Avatar {
const isCombo = Array.isArray(this.useAnimation);
const useAnimationName = isCombo ? this.useAnimation[this.useAnimationIndex] : this.useAnimation;
const useAnimation = (useAnimationName && useAnimations[useAnimationName]);
+ _han... | 0 |
diff --git a/src/components/manage/index.js b/src/components/manage/index.js @@ -454,8 +454,9 @@ export class Manage extends Component {
}
tierHasStarted = (index) => {
- const initialTiersValue = this.props.crowdsaleStore.selected.initialTiersValues[index]
- return initialTiersValue ? Date.now() > new Date(initialTier... | 11 |
diff --git a/packages/cx/src/widgets/grid/Grid.js b/packages/cx/src/widgets/grid/Grid.js @@ -37,6 +37,7 @@ import { getAccessor } from "../../data/getAccessor";
import { getActiveElement } from "../../util/getActiveElement";
import { GridCellEditor } from "./GridCellEditor";
import { batchUpdates } from "../../ui/batch... | 0 |
diff --git a/pages/api/slates/update.js b/pages/api/slates/update.js @@ -59,7 +59,7 @@ export default async (req, res) => {
const existingSlate = await Data.getSlateByName({
slatename: req.body.data.data.name,
});
- if (existingSlate) {
+ if (existingSlate && existingSlate.id !== req.body.data.id) {
return res.status(5... | 1 |
diff --git a/src/kiri/main.js b/src/kiri/main.js ],
trace: [
{ name: "follow" },
- { name: "out" },
- { name: "in" }
+ // { name: "out" },
+ // { name: "in" }
]
};
| 2 |
diff --git a/src/algorithms/utils/jestExtensions.ts b/src/algorithms/utils/jestExtensions.ts @@ -136,7 +136,7 @@ function toBeCloseToArraySnapshot(this: Context, received: number[], precision:
const expected = getSnapshot(state, key)
const tolerance = Math.pow(10, -precision) / 2
- const { pass, diffs } = compare(expec... | 8 |
diff --git a/planet.js b/planet.js @@ -418,7 +418,7 @@ Subparcel.offsets = (() => {
planet.Subparcel = Subparcel;
const _loadLiveState = seedString => {
- planet.dispatchEvent(new MessageEvent('unload'));
+ // planet.dispatchEvent(new MessageEvent('unload'));
planet.dispatchEvent(new MessageEvent('load', {
data: state,... | 2 |
diff --git a/src/article/InternalArticleSchema.js b/src/article/InternalArticleSchema.js @@ -111,7 +111,7 @@ class Figure extends DocumentNode {
Figure.schema = {
type: 'figure',
content: CHILD('graphic'),
- title: TEXT(...RICH_TEXT_ANNOS),
+ title: TEXT(...RICH_TEXT_ANNOS, 'xref'),
label: STRING,
caption: CHILD('capti... | 11 |
diff --git a/appveyor.yml b/appveyor.yml @@ -15,9 +15,9 @@ image: Visual Studio 2019
install:
- ps: Install-Product node 16
- - npx lerna bootstrap -- --legacy-peer-deps
- npm config set python python2.7
- npm config get python
+ - npx lerna bootstrap -- --legacy-peer-deps
cache:
- '%APPDATA%\npm-cache'
| 12 |
diff --git a/devices.js b/devices.js @@ -1213,8 +1213,9 @@ const devices = [
},
},
{
- zigbeeModel: ['TS0601', 'owvfni3\u0000', 'owvfni3'],
- model: 'TS0601',
+ zigbeeModel: ['owvfni3\u0000', 'owvfni3'],
+ fingerprint: [{modelID: 'TS0601', manufacturerName: '_TZE200_5zbp6j0u'}],
+ model: 'TS0601_curtain',
vendor: 'TuYa... | 7 |
diff --git a/src/scripts/interactive-video.js b/src/scripts/interactive-video.js @@ -3020,7 +3020,7 @@ const isSameElementOrChild = ($parent, $child) => {
var getXAPIDataFromChildren = function(children) {
return children.map(function(child) {
return child.getXAPIData();
- });
+ }).filter(data => !!data);
};
export def... | 2 |
diff --git a/css/style.css b/css/style.css @@ -72,6 +72,17 @@ footer {
margin: 0 1rem;
display: inline-block;
}
+@media (max-width: 767px) {
+ #stats li {
+ margin: 0 0.5rem;
+ }
+ #stats {
+ padding-top: 0.4em;
+ }
+ p.stats-label {
+ margin-bottom: 0.4em;
+ }
+}
.stats-label {
word-break: break-all;
| 7 |
diff --git a/components/Gallery/ArticleGallery.js b/components/Gallery/ArticleGallery.js @@ -5,6 +5,7 @@ import get from 'lodash/get'
import { imageSizeInfo } from 'mdast-react-render/lib/utils'
import { postMessage } from '../../lib/withInNativeApp'
import { removeQuery } from '../../lib/utils/link'
+import { MIN_GALL... | 9 |
diff --git a/server/controllers/api/channel/claims/getChannelClaims.js b/server/controllers/api/channel/claims/getChannelClaims.js @@ -3,30 +3,37 @@ const chainquery = require('chainquery').default;
const getClaimData = require('server/utils/getClaimData');
const { returnPaginatedChannelClaims } = require('./channelPag... | 1 |
diff --git a/install/install.sh b/install/install.sh @@ -156,7 +156,7 @@ echo 2
# copy over cli tool
echo 3
-info "Copying CLI tool from $INSTALL_PATH/install/rctf.py to ${RCTF_CLI_INSTALL_PATH}..."
+printf "%s" "Copying CLI tool from $INSTALL_PATH/install/rctf.py to ${RCTF_CLI_INSTALL_PATH}..."
echo 4
if [ ! -f "$RCTF... | 1 |
diff --git a/store/queries.js b/store/queries.js @@ -201,8 +201,17 @@ function getHeroBenchmarks(db, redis, options, cb) {
const arr = [0.1, 0.2, 0.3, 0.4, 0.5, 0.6, 0.7, 0.8, 0.9, 0.95, 0.99];
async.each(arr, (percentile, cb) => {
// Use data from previous epoch
- const key = ['benchmarks', utility.getStartOfBlockMinu... | 4 |
diff --git a/src/theme.js b/src/theme.js import { createGlobalStyle } from "styled-components"
+import { mix } from "polished"
const white = "#ffffff"
const black = "#000000"
@@ -25,60 +26,60 @@ const gridBlue = "#a7d0f4"
const gridPink = "#ffa1c3"
const white500 = white
-const white600 = "#f7f7f7"
-const white700 = "#... | 13 |
diff --git a/src/components/core/update/updateSlides.js b/src/components/core/update/updateSlides.js @@ -10,12 +10,22 @@ export default function () {
const slidesGrid = [];
const slidesSizesGrid = [];
+ let offsetBefore = params.slidesOffsetBefore;
+ if (typeof offsetBefore === 'function') {
+ offsetBefore = params.sli... | 11 |
diff --git a/Gopkg.toml b/Gopkg.toml name = "github.com/spf13/cobra"
revision = "7547e83b2d85fd1893c7d76916f67689d761fecb"
-[[constraint]]
- branch = "master"
- name = "github.com/zcalusic/sysinfo"
-
[[constraint]]
name = "gopkg.in/go-playground/validator.v9"
version = "9.28.0"
| 2 |
diff --git a/components/illustration/check-props.js b/components/illustration/check-props.js @@ -27,7 +27,7 @@ if (process.env.NODE_ENV !== 'production') {
if (props.illustration || props.path) {
// An illustration image must be accompanied with heading text inline
oneOfRequiredProperty(COMPONENT, {
- heading: props.he... | 1 |
diff --git a/src/ol-ext/interaction/modifyrectangle.js b/src/ol-ext/interaction/modifyrectangle.js @@ -31,7 +31,6 @@ ngeo.interaction.ModifyRectangle = function(options) {
ol.interaction.Pointer.call(this, {
handleDownEvent: this.handleDown_,
- handleMoveEvent: this.handleMove_,
handleDragEvent: this.handleDrag_,
handl... | 11 |
diff --git a/packages/mermaid/package.json b/packages/mermaid/package.json {
"name": "mermaid",
- "version": "9.2.0-rc6",
+ "version": "9.2.0-rc7",
"description": "Markdownish syntax for generating flowcharts, sequence diagrams, class diagrams, gantt charts and git graphs.",
"main": "./dist/mermaid.core.mjs",
"module":... | 12 |
diff --git a/circle.yml b/circle.yml @@ -29,7 +29,7 @@ machine:
post:
# Log metrics in the background in order to monitor resource usage over time:
- - 'FILE=$CIRCLE_ARTIFACTS/process_metrics.txt; while true; do ps -u ubuntu -eo pid,%cpu,%mem,rss,args,uname -w -w --sort=-%mem >> $FILE; echo "----------" >> $FILE; sleep... | 14 |
diff --git a/LICENSE b/LICENSE The MIT License (MIT)
Copyright (c) 2012 Peter Cottle
-Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to... | 7 |
diff --git a/components/ReplySearch/ReplySearch.js b/components/ReplySearch/ReplySearch.js @@ -68,7 +68,7 @@ const SearchArticles = ({ onConnect, searchArticles }) => {
{searchArticles.map(article => {
return (
<SearchArticleItem
- key={article.get('id')}
+ key={article.id}
article={article}
onConnect={onConnect}
/>
| 14 |
diff --git a/lib/scenario-editor/utils/valhalla.js b/lib/scenario-editor/utils/valhalla.js @@ -203,13 +203,7 @@ export function routeWithGraphHopper (points: Array<LatLng>): ?Promise<GraphHopp
if (!process.env.GRAPH_HOPPER_KEY) {
throw new Error('GRAPH_HOPPER_KEY not set')
}
- if (process.env.GRAPH_HOPPER_URL) {
- // I... | 3 |
diff --git a/ui/app/components/pending-tx.js b/ui/app/components/pending-tx.js @@ -15,7 +15,7 @@ const addressSummary = util.addressSummary
const nameForAddress = require('../../lib/contract-namer')
const BNInput = require('./bn-as-decimal-input')
-const MIN_GAS_PRICE_GWEI_BN = new BN(2)
+const MIN_GAS_PRICE_GWEI_BN = ... | 12 |
diff --git a/moment.d.ts b/moment.d.ts @@ -392,7 +392,7 @@ declare namespace moment {
type MomentInput = Moment | Date | string | number | (number | string)[] | MomentInputObject | void; // null | undefined
type DurationInputArg1 = Duration | number | string | FromTo | DurationInputObject | void; // null | undefined
ty... | 1 |
diff --git a/ui/src/directives/TouchPan.js b/ui/src/directives/TouchPan.js @@ -158,7 +158,6 @@ export default __QUASAR_SSR_SERVER__
},
touchStart (evt) {
- console.log('touchStart')
if (shouldStart(evt, ctx)) {
const target = evt.target
| 2 |
diff --git a/.github/workflows/build_test.yml b/.github/workflows/build_test.yml @@ -33,6 +33,8 @@ jobs:
uses: actions/setup-node@v2.1.1
with:
node-version: ${{ matrix.node-version }}
+ env:
+ ACTIONS_ALLOW_UNSECURE_COMMANDS: 'true'
- name: Install dependencies
run: |
@@ -43,6 +45,7 @@ jobs:
# ATTENTION: `BASE_URL` mus... | 11 |
diff --git a/NEWS.md b/NEWS.md @@ -6,7 +6,7 @@ Development
### Features
- OAuth provider (WIP):
- - Revoke permissions when owner stops sharing you a dataset (#14433)
+ - Revoke permissions when owner stops sharing you a dataset (#14472)
### Bug fixes / enhancements
- None yet
| 3 |
diff --git a/src/js/base/core/dom.js b/src/js/base/core/dom.js @@ -955,7 +955,7 @@ function html($node, isNewlineOnBlock) {
return match + ((isEndOfInlineContainer || isBlockNode) ? '\n' : '');
});
- markup = $.trim(markup);
+ markup = markup.trim();
}
return markup;
| 14 |
diff --git a/src/__experimental__/components/decimal/decimal.component.js b/src/__experimental__/components/decimal/decimal.component.js @@ -47,7 +47,7 @@ class Decimal extends React.Component {
return maxPrecision;
}
- if (precision < 0) {
+ if (!precision || precision < 0) {
return Decimal.defaultProps.precision;
}
| 12 |
diff --git a/src/components/AvatarWithImagePicker.js b/src/components/AvatarWithImagePicker.js @@ -132,7 +132,7 @@ class AvatarWithImagePicker extends React.Component {
* @returns {Boolean}
*/
isValidExtension(image) {
- const fileExtension = lodashGet(FileUtils.splitExtensionFromFileName(image.name), 'fileExtension', ... | 9 |
diff --git a/lib/build/files/webpack_files.js b/lib/build/files/webpack_files.js @@ -38,14 +38,14 @@ var files = {
'new-dashboard-feature': {
stylesheets: [
'/stylesheets/header.css',
- '/stylesheets/common_new.css',
+ '/stylesheets/common_new.css'
],
scripts: [
'/javascripts/header.js',
'/javascripts/common.js',
'/jav... | 2 |
diff --git a/sections/tooling/babel-plugin.js b/sections/tooling/babel-plugin.js @@ -131,7 +131,7 @@ const BabelPlugin = () => md`
because \`styled-components\` template literals don't need to
be 100% spec compliant.
- Read more about [Tagged Template Literals](#tagged-template-literals) in
+ Read more about [Tagged Te... | 1 |
diff --git a/src/Sticky/index.js b/src/Sticky/index.js @@ -14,13 +14,13 @@ class Sticky extends PureComponent {
this.bindElement = this.bindElement.bind(this)
this.bindPlaceholder = this.bindPlaceholder.bind(this)
- this.setPosition = this.setPosition.bind(this)
+ this.handlePosition = this.handlePosition.bind(this)
}
... | 7 |
diff --git a/packages/api-explorer-ui/src/Doc.jsx b/packages/api-explorer-ui/src/Doc.jsx @@ -11,11 +11,8 @@ const getPathOperation = require('./lib/get-path-operation');
const showCode = require('./lib/show-code');
function Doc({ doc, oas }) {
- // TODO rename swagger -> oas
- const swagger = oas;
-
- const path = getP... | 10 |
diff --git a/src/utils/wallet.js b/src/utils/wallet.js @@ -510,8 +510,15 @@ class Wallet {
const checkedAccountIds = (await Promise.all(
accountIds
.map(async (accountId) => {
+ try {
const accountKeys = await (await this.getAccount(accountId)).getAccessKeys();
return accountKeys.find(({ public_key }) => public_key ===... | 9 |
diff --git a/components/Cards/PlaceListingCard/PlaceListingCard.js b/components/Cards/PlaceListingCard/PlaceListingCard.js @@ -10,6 +10,7 @@ const PlaceListingCard = (props) => {
name,
location,
spaceDetail,
+ placeBadgeText,
...rest,
} = props;
@@ -17,7 +18,7 @@ const PlaceListingCard = (props) => {
<DestinationListin... | 11 |
diff --git a/src/mesh/api.js b/src/mesh/api.js @@ -298,6 +298,7 @@ let api = mesh.api = {
};
let deferFn = [];
+let boundsCache = {};
let util = mesh.util = {
@@ -381,9 +382,19 @@ let util = mesh.util = {
if (geometry) {
let matrix = object.matrixWorld;
+ let bkey = [matrix.elements.map(v => v.round(5))].join(',')
+ le... | 4 |
diff --git a/src/traces/parcoords/lines.js b/src/traces/parcoords/lines.js @@ -176,7 +176,7 @@ function setAttributes(attributes, sampleCount, points) {
function emptyAttributes(regl) {
var attributes = {};
for(var i = 0; i < 16; i++) {
- attributes['p' + i.toString(16)] = regl.buffer({usage: 'dynamic', type: 'float', ... | 0 |
diff --git a/react/src/base/inputs/SprkRadio.stories.js b/react/src/base/inputs/SprkRadio.stories.js import React from 'react';
import SprkSelectionInput from './SprkSelectionInput/SprkSelectionInput';
-import SprkErrorContainer from './SprkErrorContainer/SprkErrorContainer';
import SprkRadioGroup from './SprkRadio/Spr... | 3 |
diff --git a/core/block.js b/core/block.js @@ -2926,23 +2926,6 @@ Blockly.Blocks['variables_get_typed'] = {
}
},
- /**
- * Add menu option to create getter/setter block for this setter/getter.
- * @param {!Array} options List of menu options to add to.
- * @this Blockly.Block
- */
- customContextMenu: function(options)... | 2 |
diff --git a/token-metadata/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/metadata.json b/token-metadata/0x1b980e05943dE3dB3a459C72325338d327B6F5a9/metadata.json "symbol": "GEAR",
"address": "0x1b980e05943dE3dB3a459C72325338d327B6F5a9",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/content/billing/pricing.md b/content/billing/pricing.md @@ -76,11 +76,11 @@ Each addtional concurrency is $49/month and you will be billed for each concurre
| Team user | $10 / month | |
| Extra build concurrency | $49 / month |
-Consider Business plan or Enterprise plan if more than three concurrent build... | 10 |
diff --git a/editor/svg-editor.js b/editor/svg-editor.js @@ -5626,13 +5626,20 @@ editor.init = function () {
const toolButtons = [
{sel: '#tool_select', fn: clickSelect, evt: 'click', key: ['V', true]},
{sel: '#tool_fhpath', fn: clickFHPath, evt: 'click', key: ['Q', true]},
- {sel: '#tool_line', fn: clickLine, evt: 'cl... | 13 |
diff --git a/package.json b/package.json "chai": "^3.3.0",
"coveralls": "^2.11.8",
"eslint": "^3.0.1",
- "gulp": "^3.9.0",
- "gulp-rename": "^1.2.2",
"istanbul": "^1.0.0-alpha.2",
"mocha": "*",
"mocha-lcov-reporter": "^1.2.0",
| 2 |
diff --git a/src/libs/ReportUtils.js b/src/libs/ReportUtils.js @@ -545,7 +545,14 @@ function getReportName(report, policies = {}) {
const participants = report.participants || [];
const participantsWithoutCurrentUser = _.without(participants, sessionEmail);
const isMultipleParticipantReport = participantsWithoutCurrent... | 9 |
diff --git a/app/services/stream_copy.js b/app/services/stream_copy.js @@ -55,8 +55,8 @@ module.exports = class StreamCopy {
return cb(err);
}
- const copyFromStream = copyFrom(this.sql);
- const pgstream = client.query(copyFromStream);
+ this.copyFromStream = copyFrom(this.sql);
+ const pgstream = client.query(this.co... | 4 |
diff --git a/scenes/street.scn b/scenes/street.scn "position": [-2, 1, 2],
"quaternion": [0, 0.7071067811865475, 0, 0.7071067811865476],
"start_url": "https://webaverse.github.io/helm/"
+ },
+ {
+ "position": [0, 0, 0],
+ "quaternion": [0, 0, 0, 1],
+ "start_url": "../metaverse_modules/barrier/",
+ "components": [
+ {
... | 0 |
diff --git a/core/worker/lib/code-api/subpipeline/subpipeline.js b/core/worker/lib/code-api/subpipeline/subpipeline.js @@ -166,10 +166,10 @@ class SubPipelineHandler {
/**
* Handle subPipeline job error
* @param {string} error error message
- * @param {string} subPipelineId internal algorothm subpipeline Id
+ * @param ... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.