code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/www/tablet/js/widget_readingsgroup.js b/www/tablet/js/widget_readingsgroup.js @@ -46,7 +46,7 @@ var Modul_readingsgroup = function () {
ftui.sendFhemCommand(cmd)
.done(function (data, dev) {
//console.log('received update for dynamic html : ', $(this) );
- $(this.elem).html(data);
+ elem.html(data);
});
}
... | 1 |
diff --git a/src/pages/LootTier.jsx b/src/pages/LootTier.jsx @@ -217,7 +217,13 @@ function LootTier(props) {
);
}, [filteredItems, numberFilter]);
- const groupNames = useMemo(() => {
+ const {
+ groupNames,
+ itemChunks,
+ } = useMemo(() => {
+ let innerGroupNames;
+ let innerItemChunks;
+
if (groupByType) {
const act... | 1 |
diff --git a/bin/exception.js b/bin/exception.js @@ -20,12 +20,22 @@ module.exports = OpenAPIException;
/**
* Create an OpenAPIException instance
- * @param header
+ * @param {string} [header]
* @returns {OpenAPIException}
* @constructor
*/
function OpenAPIException (header) {
if (!(this instanceof OpenAPIException)) r... | 1 |
diff --git a/weapons-manager.js b/weapons-manager.js @@ -2205,7 +2205,7 @@ const _updateMenu = () => {
objectMenuEl.classList.toggle('open', true);
itemLabel.classList.toggle('open', true);
itemIcon.classList.toggle('open', true);
- if (document.monetization) {
+ if (document.monetization.state == 'started') {
itemMone... | 0 |
diff --git a/src/models/data.js b/src/models/data.js @@ -134,7 +134,7 @@ const DataModel = Model.extend({
const collection = this.getData(dataId, "query").from.split(".")[0];
this.dataAvailability[collection] = [];
this.getData(dataId).forEach(kvPair => {
- const key = (kvPair.key instanceof String ? JSON.parse(kvPair.... | 14 |
diff --git a/src/lib/core.js b/src/lib/core.js @@ -5860,13 +5860,20 @@ export default function (context, pluginCallButtons, plugins, lang, options, _ic
const range = core.getRange();
const sCell = util.getRangeFormatElement(range.startContainer);
const eCell = util.getRangeFormatElement(range.endContainer);
-
- if (uti... | 1 |
diff --git a/src/components/LearningToolsCardGrid.tsx b/src/components/LearningToolsCardGrid.tsx // Library imports
import React from "react"
-import styled from "@emotion/styled"
+import { Grid } from "@chakra-ui/react"
import { useIntl } from "react-intl"
// Component imports
-import { CardGrid } from "./SharedStyled... | 14 |
diff --git a/src/commands/Roles/RoleIds.js b/src/commands/Roles/RoleIds.js @@ -28,9 +28,9 @@ class Roles extends Command {
*/
run(message) {
const roles = message.guild.roles.array().sort((a, b) => {
- if (a < b) {
+ if (a.name < b.name) {
return -1;
- } else if (a > b) {
+ } else if (a.name > b.name) {
return 1;
} els... | 3 |
diff --git a/src/modules/observer/observer.js b/src/modules/observer/observer.js @@ -45,7 +45,7 @@ const Observer = {
}
}
// Observe container
- swiper.observer.attach(swiper.$el[0], { childList: false });
+ swiper.observer.attach(swiper.$el[0], { childList: swiper.params.observeSlideChildren });
// Observe wrapper
swi... | 0 |
diff --git a/src/io_frida.c b/src/io_frida.c @@ -1579,6 +1579,8 @@ static void on_message(FridaScript *script, const char *raw_message, GBytes *dat
free (message);
}
}
+ } else {
+ eprintf ("Missing stanza for log message\n");
}
} else if (name && !strcmp (name, "log-file")) {
JsonNode *stanza_node = json_object_get_me... | 7 |
diff --git a/test/integration/json.js b/test/integration/json.js var _ = require('lodash');
-var Promise = global.testPromise;
module.exports = function(bookshelf) {
var isJsonSupported;
@@ -30,8 +29,6 @@ module.exports = function(bookshelf) {
describe('JSON support', function() {
var Models = require('./helpers/json/o... | 10 |
diff --git a/js/bitmart.js b/js/bitmart.js @@ -18,7 +18,7 @@ module.exports = class bitmart extends Exchange {
'CORS': true,
'fetchMarkets': true,
'fetchTicker': true,
- 'fetchTickers': true,
+ 'fetchTickers': 'emulated',
'fetchCurrencies': true,
'fetchOrderBook': true,
'fetchTrades': true,
@@ -28,8 +28,8 @@ module.exp... | 12 |
diff --git a/src/parsers/GmlSeeker.hx b/src/parsers/GmlSeeker.hx @@ -269,6 +269,16 @@ class GmlSeeker {
}
if (lfLocals != null) locals.addLocals(lfLocals);
}
+ //
+ var q_swap:GmlReaderExt = null;
+ inline function q_store():Void {
+ if (q_swap == null) q_swap = new GmlReaderExt(src);
+ q_swap.setTo(q);
+ }
+ inline fu... | 1 |
diff --git a/articles/metadata/management-api.md b/articles/metadata/management-api.md @@ -82,7 +82,7 @@ Make the following `GET` request to the API:
```har
{
"method": "GET",
- "url": "https://${account.namespace}/api/v2/users/user_id"
+ "url": "https://${account.namespace}/api/v2/users/user_id",
"httpVersion": "HTTP/... | 0 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -9,6 +9,11 @@ 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.54.7] -- 2020-07-23
+### Changed
+ - Revert [#4904] to fix a template regression introduced in 1.54.4 [#5016]
+
+
... | 3 |
diff --git a/examples/basic/serverless.yml b/examples/basic/serverless.yml @@ -2,20 +2,15 @@ type: my-project
version: 0.0.1
components:
- downloadedComponent:
- type: https://github.com/eahefnawy/component-url-test/archive/master.zip
+ myFunction:
+ type: aws-lambda
inputs:
- test: abc
-#components:
-# myFunction:
-# ... | 13 |
diff --git a/publish/src/commands/deploy.js b/publish/src/commands/deploy.js @@ -166,8 +166,6 @@ const deploy = async ({
? currentWeekOfInflation.toNumber()
: 0;
- currentWeekOfInflation = 40;
-
// Calculate lastMintEvent as Inflation start date + number of weeks issued * secs in weeks
const mintingBuffer = 86400;
cons... | 2 |
diff --git a/articles/tokens/access-token.md b/articles/tokens/access-token.md @@ -86,8 +86,17 @@ In order to obtain this access token, the client must first have permission to a
For details on how to set up a Client Credentials Grant in Auth0 refer to [Setting up a Client Credentials Grant using the Management Dashboa... | 0 |
diff --git a/source/Overture.js b/source/Overture.js @@ -88,6 +88,7 @@ import * as Status from './datastore/record/Status';
export { Status };
export { default as ToManyAttribute } from './datastore/record/ToManyAttribute';
export { default as ToOneAttribute } from './datastore/record/ToOneAttribute';
+export { default... | 0 |
diff --git a/build/transpile.js b/build/transpile.js @@ -25,6 +25,7 @@ const fs = require ('fs')
, Exchange = require ('.' + baseExchangeJsFile)
, tsFilename = './ccxt.d.ts'
, pythonCodingUtf8 = '# -*- coding: utf-8 -*-'
+const {ids: exchanges} = require("../exchanges.json");
class Transpiler {
@@ -1978,10 +1979,12 @@ ... | 12 |
diff --git a/packages/node_modules/@node-red/editor-client/src/js/polyfills.js b/packages/node_modules/@node-red/editor-client/src/js/polyfills.js Object.defineProperty(SVGElement.prototype, 'children', Object.getOwnPropertyDescriptor(HTMLElement.prototype, 'children'));
}
- if (!Array.from) {
- // JSONata provides an ... | 2 |
diff --git a/package.json b/package.json "markdown-it-table-of-contents": "^0.6.0",
"netlify-plugin-cache": "^1.0.3",
"node-fetch": "^2.6.8",
- "prettier": "^2.8.3",
+ "prettier": "^2.8.4",
"semver": "^7.3.8",
"short-hash": "^1.0.0",
"slugify": "^1.6.5",
"sorted-object": "^2.0.1",
- "terser": "^5.16.1"
+ "terser": "^5.... | 3 |
diff --git a/token-metadata/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/metadata.json b/token-metadata/0xb05AF453011d7ad68a92b0065FFD9d1277eD2741/metadata.json "symbol": "TEAM",
"address": "0xb05AF453011d7ad68a92b0065FFD9d1277eD2741",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"... | 3 |
diff --git a/Source/Scene/Globe.js b/Source/Scene/Globe.js @@ -136,7 +136,7 @@ define([
this.enableLighting = false;
/**
- * Enable the ground atmosphere, which is drawn over the globe when viewed from a distance greater than <code>lightingFadeOutDistance</code>.
+ * Enable the ground atmosphere, which is drawn over th... | 3 |
diff --git a/main/utils/config.js b/main/utils/config.js @@ -16,7 +16,6 @@ const initConfigFile = async () => {
"sharing": {
"include_ip": false,
"include_asn": true,
- "include_country": true,
"upload_results": true
},
"nettests": {
@@ -72,11 +71,19 @@ const getConfig = async () => {
}
const migrationMap = {
+ '0->1':... | 2 |
diff --git a/provision_build.go b/provision_build.go @@ -48,20 +48,6 @@ func spartaTagName(baseKey string) string {
}
var (
- // SpartaTagHomeKey is the keyname used in the CloudFormation Output
- // that stores the Sparta home URL.
- // @enum OutputKey
- SpartaTagHomeKey = spartaTagName("home")
-
- // SpartaTagVersion... | 2 |
diff --git a/dist/documentation/index.html b/dist/documentation/index.html @@ -572,5 +572,13 @@ app.update('about', data);
</div>
<script src="main.js"></script>
<script src="../prism.js"></script>
+ <script>https://cdnjs.cloudflare.com/ajax/libs/fastclick/1.0.6/fastclick.min.js</script>
+ <script>
+ if ('addEv... | 0 |
diff --git a/packages/app/src/components/Admin/Security/LdapAuthTest.jsx b/packages/app/src/components/Admin/Security/LdapAuthTest.jsx @@ -97,6 +97,7 @@ class LdapAuthTest extends React.Component {
name="username"
value={this.props.username}
onChange={(e) => { this.props.onChangeUsername(e.target.value) }}
+ autoComple... | 12 |
diff --git a/public/index.html b/public/index.html ga('set', 'anonymizeIp', true);
ga('set', 'allowAdFeatures', false);
- ga('create', 'UA-145652997-6', 'auto', 'govuk_shared', {'allowLinker': true});
+ ga('create', 'UA-145652997-1', 'auto', 'govuk_shared', {'allowLinker': true});
ga('govuk_shared.require', 'linker');
... | 12 |
diff --git a/src/utils/emoji-data.js b/src/utils/emoji-data.js import { intersect, unifiedToNative } from './index'
import { uncompress, buildSearch } from './data'
+import frequently from './frequently'
const SHEET_COLUMNS = 52
const COLONS_REGEX = /^(?:\:([^\:]+)\:)(?:\:skin-tone-(\d)\:)?$/
@@ -103,6 +104,7 @@ export... | 9 |
diff --git a/generators/entity-server/templates/src/test/java/package/web/rest/EntityResourceIT.java.ejs b/generators/entity-server/templates/src/test/java/package/web/rest/EntityResourceIT.java.ejs @@ -556,7 +556,7 @@ _%>
int databaseSizeBeforeCreate = <%= entityInstance %>Repository.findAll().size();
// Create the <%... | 12 |
diff --git a/js/views/cfi_navigation_logic.js b/js/views/cfi_navigation_logic.js @@ -1500,9 +1500,12 @@ var CfiNavigationLogic = function (options) {
var treeWalker = document.createTreeWalker(
this.getBodyElement(),
- NodeFilter.SHOW_ELEMENT,
+ NodeFilter.SHOW_ELEMENT | NodeFilter.SHOW_TEXT,
function(node) {
- if (isE... | 7 |
diff --git a/guide/english/certifications/coding-interview-prep/project-euler/problem-13-large-sum/index.md b/guide/english/certifications/coding-interview-prep/project-euler/problem-13-large-sum/index.md ---
title: Large sum
---
+
## Problem 13: Large sum
+Challenge: Work out the first ten digits of the sum of one-hun... | 14 |
diff --git a/bl-kernel/pagex.class.php b/bl-kernel/pagex.class.php @@ -152,14 +152,14 @@ class PageX {
public function previousKey()
{
global $dbPages;
- return $dbPages->previousPageKey($key);
+ return $dbPages->previousPageKey($this->key());
}
// Returns the next page key
public function nextKey()
{
global $dbPages;
... | 1 |
diff --git a/docs/content/widgets/LookupFields.js b/docs/content/widgets/LookupFields.js -import { HtmlElement, Repeater, LookupField } from 'cx/widgets';
+import { HtmlElement, Repeater, LookupField, Tab } from 'cx/widgets';
import { Content, Controller, LabelsLeftLayout } from 'cx/ui';
import { Md } from '../../compo... | 0 |
diff --git a/spec/rest/init.test.js b/spec/rest/init.test.js @@ -85,10 +85,12 @@ define(['ably', 'shared_helper', 'chai'], function (Ably, helper, chai) {
expect(rest.options.promises, 'Check promises default to true with promise constructor').to.be.ok;
if (!isBrowser && typeof require == 'function') {
- rest = new req... | 4 |
diff --git a/hp-manager.js b/hp-manager.js @@ -25,82 +25,9 @@ const damagePhysicsMesh = _makeDamagePhysicsMesh();
damagePhysicsMesh.visible = false;
scene.add(damagePhysicsMesh);
-const radius = 1;
-const height = 0.2;
-const halfHeight = height/2;
-const offsetDistance = 0.3;
-const cylinderMesh = new THREE.Mesh(
- ne... | 2 |
diff --git a/README.md b/README.md @@ -221,10 +221,6 @@ Thank you to all the people who already contributed to TestCafe!
TestCafe developers and community members made these plugins:
-* **Rapid test development tool**<br/>
- Changes in test code immediately restart the test, and you see the results instantly.
- * [Test... | 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 "4.0.2">
+<!ENTITY version-java-client "4.1.0">
<... | 12 |
diff --git a/metaverse-modules.js b/metaverse-modules.js @@ -16,6 +16,7 @@ const moduleUrls = {
defaultScene: './metaverse_modules/default-scene/',
path: './metaverse_modules/path/',
area: './metaverse_modules/area/',
+ cameraPlaceholder: './metaverse_modules/camera-placeholder/',
};
const modules = {};
const loadPromi... | 0 |
diff --git a/ChatRoomInfoAnnotations.user.js b/ChatRoomInfoAnnotations.user.js setRequestHeader.call(this, name, value);
};
return xhr;
- };
+ }
function doPageload() {
// Add annotation count
if(numAnno + numSusp > 0) {
- $('<div id="annotation-count" title="This user has ' + numAnno + ' moderator annotations and has ... | 2 |
diff --git a/accessibility-checker-extension/src/ts/options/OptionsApp.tsx b/accessibility-checker-extension/src/ts/options/OptionsApp.tsx @@ -166,10 +166,8 @@ class OptionsApp extends React.Component<{}, OptionsAppState> {
</div>
<p>
By default, the Accessibility Checker uses a set of rules that
- correspond to the mo... | 3 |
diff --git a/packages/app/src/interfaces/rehype.ts b/packages/app/src/interfaces/rehype.ts export const RehypeSanitizeOption = {
- Recommended: 1,
- Custom: 2,
+ RECOMMENDED: 1,
+ CUSTOM: 2,
} as const;
export type RehypeSanitizeOption = typeof RehypeSanitizeOption[keyof typeof RehypeSanitizeOption];
| 4 |
diff --git a/src/pages/using-spark/components/dictionary.mdx b/src/pages/using-spark/components/dictionary.mdx @@ -10,6 +10,7 @@ The Dictionary component displays a list of key-value pairs.
<ComponentPreview
componentName="dictionary--default-story"
+ maxWidth="100%"
hasReact
hasAngular
hasHTML
@@ -43,6 +44,7 @@ Use th... | 3 |
diff --git a/app/translations/en.json b/app/translations/en.json "app.components.Features.ClaimRewardsForm.claimerLabel": "Claimer",
"app.components.Features.ClaimRewardsForm.claimerPlaceholder": "Account that claims production rewards",
"app.components.Features.ClaimRewardsForm.claimerSubmitText": "Claim",
+
"app.comp... | 0 |
diff --git a/src/userscript.ts b/src/userscript.ts @@ -39957,6 +39957,16 @@ var $$IMU_EXPORT$$;
return src.replace(/(:\/\/[^/]*\/goods\/[0-9]+)(?:\/S)?$/i, "$1/L");
}
+ if (domain_nowww === "phileweb.com") {
+ // thanks to fireattack on github: https://github.com/qsniyg/maxurl/issues/974
+ // https://www.phileweb.com/i... | 7 |
diff --git a/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/Footer.js b/assets/js/modules/search-console/components/dashboard/SearchFunnelWidget/Footer.js @@ -25,7 +25,6 @@ import PropTypes from 'prop-types';
* WordPress dependencies
*/
import { isURL } from '@wordpress/url';
-import { Fragmen... | 2 |
diff --git a/src/ui/UI.js b/src/ui/UI.js @@ -483,9 +483,8 @@ class UIComponent extends Eventable(Class) {
_getDefaultEvents() {
return {
- 'zooming': this.onZooming,
- 'moving': this.onMoving,
- 'zoomend': this.onZoomEnd
+ 'zooming zoomend rotate pitch': this.onEvent,
+ 'moving': this.onMoving
};
}
@@ -504,19 +503,13 @... | 3 |
diff --git a/packages/press-theme-siimple/styles/layout/home.scss b/packages/press-theme-siimple/styles/layout/home.scss //padding-bottom: 70px;
//margin-bottom: 20px;
color: siimple-default-color("primary");
- background-color: siimple-default-color("light", "light");
+ background-color: siimple-default-color("light")... | 1 |
diff --git a/constants.js b/constants.js @@ -91,7 +91,7 @@ export const defaultVoicePack = {
};
export const voiceEndpoint = `https://voice.webaverse.com/tts`;
export const defaultVoice = `1jLX0Py6j8uY93Fjf2l0HOZQYXiShfWUO`; // Sweetie Belle
-export const defaultVoice = 'Sweetie Belle';
+// export const defaultVoice = ... | 2 |
diff --git a/examples/__tests__/SimpleSlider.test.js b/examples/__tests__/SimpleSlider.test.js @@ -4,9 +4,6 @@ import SimpleSlider from '../SimpleSlider';
import { repeatClicks } from '../../test-helpers';
import { html as beautify_html } from 'js-beautify'
-import { getReactSlickDetails } from '../../__tests__/reactSl... | 2 |
diff --git a/start_with_wallet.sh b/start_with_wallet.sh @@ -3,5 +3,5 @@ then
(sleep 60;echo 8;) | npm run commands || true
else
echo $WALLET > wallet.json
- (sleep 60;echo 4;sleep 5;echo 'wallet.json';sleep 5;echo 3;sleep 5;echo 0;sleep 5;echo 'y';sleep 5;echo 8;) | npm run commands || true
+ (sleep 60;echo 4;sleep 5;... | 13 |
diff --git a/camera-manager.js b/camera-manager.js @@ -29,6 +29,62 @@ const lastCameraQuaternion = new THREE.Quaternion();
let lastCameraZ = 0;
let lastCameraValidZ = 0;
+function Simple1DNoise(seed = '') {
+ var MAX_VERTICES = 256;
+ var MAX_VERTICES_MASK = MAX_VERTICES -1;
+ var amplitude = 1;
+ var scale = 1;
+
+ co... | 0 |
diff --git a/packages/composables/use-drawing/use-drawing-action.ts b/packages/composables/use-drawing/use-drawing-action.ts /*
* @Author: zouyaoji@https://github.com/zouyaoji
* @Date: 2021-10-15 09:47:36
- * @LastEditTime: 2022-03-10 00:57:10
+ * @LastEditTime: 2022-07-25 17:36:49
* @LastEditors: zouyaoji
* @Descripti... | 1 |
diff --git a/packages/bitcore-wallet-ui/src/containers/wallet/wallet.tsx b/packages/bitcore-wallet-ui/src/containers/wallet/wallet.tsx @@ -66,17 +66,9 @@ export class WalletContainer extends Component<Props, State> {
}
async fetchTransactions(wallet: Wallet) {
- wallet.listTransactions({}).on('data', d => {
- const jso... | 4 |
diff --git a/packages/mip/test/specs/components/mip-img.spec.js b/packages/mip/test/specs/components/mip-img.spec.js @@ -8,7 +8,7 @@ import dom from 'src/util/dom/dom'
/* eslint-disable no-unused-expressions */
/* globals describe, before, it, expect, after, Event */
-describe('mip-img', function () {
+describe.only('m... | 1 |
diff --git a/lib/utils.js b/lib/utils.js @@ -244,8 +244,7 @@ function createPkgConfigPathObj(path) {
var length = Math.max(lastWildcard + 1, path.lastIndexOf('/'));
return {
length: length,
- // NB handle regex control character escapes or simply create a test function here
- regEx: new RegExp('^(' + path.substr(0, len... | 1 |
diff --git a/edit.js b/edit.js import * as THREE from 'https://static.xrpackage.org/xrpackage/three.module.js';
import {BufferGeometryUtils} from 'https://static.xrpackage.org/BufferGeometryUtils.js';
import {GLTFLoader} from './GLTFLoader.module.js';
+import {BasisTextureLoader} from './BasisTextureLoader.js';
import ... | 0 |
diff --git a/test/jasmine/tests/gl3d_plot_interact_test.js b/test/jasmine/tests/gl3d_plot_interact_test.js @@ -35,7 +35,7 @@ describe('Test gl3d before/after plot', function() {
destroyGraphDiv();
});
- it('@gl should not rotate camera on the very first click before scene is complete and then should rotate', function(d... | 0 |
diff --git a/.github/workflows/automerge.yml b/.github/workflows/automerge.yml @@ -20,3 +20,9 @@ jobs:
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
+ - name: Enable auto-merge Stripe.net
+ if: ${{contains(steps.metadata.outputs.dependency-names, 'Stripe.net') && steps.met... | 0 |
diff --git a/README.md b/README.md @@ -64,7 +64,7 @@ npm install --save-dev cypress cypress-vue-unit-test
## Vue CLI 3
-1. Create a new project with `vue create <project-name>` and select Cypress for E2E testing
+1. Create a new project with `vue create <project-name>` and select Cypress for E2E testing OR add the Cypr... | 0 |
diff --git a/generators/client/templates/vue/src/main/webapp/app/account/account.service.ts.ejs b/generators/client/templates/vue/src/main/webapp/app/account/account.service.ts.ejs @@ -76,23 +76,6 @@ export default class AccountService {
});
}
- public hasAnyAuthority(authorities: any): boolean {
- if (typeof authoriti... | 2 |
diff --git a/docker-compose.yml b/docker-compose.yml @@ -127,7 +127,7 @@ services:
image: dockerhub/vaccination_api
environment:
REGISTRY_URL: "http://registry:8081"
- REGISTRY_URL_FOR_ES: "http://registry-es:8081"
+ REGISTRY_WITH_ES_URL: "http://registry-es:8081"
KAFKA_BOOTSTRAP_SERVERS: kafka:9092
KEYCLOAK_URL: "http... | 10 |
diff --git a/src/client/js/components/Admin/Customize/CustomizeBehaviorSetting.jsx b/src/client/js/components/Admin/Customize/CustomizeBehaviorSetting.jsx +/* eslint-disable react/no-danger */
import React from 'react';
import PropTypes from 'prop-types';
import { withTranslation } from 'react-i18next';
@@ -50,11 +51,1... | 14 |
diff --git a/.github/workflows/php-tests.yml b/.github/workflows/php-tests.yml @@ -20,9 +20,8 @@ jobs:
mysql:
image: mysql:5.7
env:
- MYSQL_ALLOW_EMPTY_PASSWORD: yes
MYSQL_DATABASE: wordpress
- MYSQL_PASSWORD: ''
+ MYSQL_ROOT_PASSWORD: ''
steps:
- uses: actions/checkout@v2
- uses: shivammathur/setup-php@v2
| 12 |
diff --git a/docs/src/components/DocLayout/index.tsx b/docs/src/components/DocLayout/index.tsx @@ -46,7 +46,7 @@ import StyledProse from "./primitives/StyledProse";
import StyledMobileTocWrapper from "./primitives/StyledMobileTocWrapper";
import { getDocumentPageTitle } from "../../utils/document";
-const StyledDescrip... | 1 |
diff --git a/circle.yml b/circle.yml @@ -22,8 +22,6 @@ dependencies:
- jscs --help || npm install -g jscs
- jshint -v || npm install -g jshint
- which grunt 2>&1 >/dev/null || npm install -g grunt-cli
- cache_directories:
- - "~/nvm/v0.10.31"
test:
override:
| 2 |
diff --git a/src/shared/EditorSessionMixin.js b/src/shared/EditorSessionMixin.js @@ -279,7 +279,8 @@ function _addContainerId (sel, editorSession) {
const _exceptions = [
/TextPropertyEditor.*substance\.js/,
/IsolatedNodeComponent.*substance\.js/,
- /IsolatedInlineNodeComponent.*substance\.js/
+ /IsolatedInlineNodeComp... | 8 |
diff --git a/iris/utils/notification-formatting.js b/iris/utils/notification-formatting.js @@ -104,12 +104,16 @@ const formatNotification = (incomingNotification, currentUserId) => {
href = `/thread/${notification.context.id}`;
body = sentencify(
- entities.map(
- ({ payload }) =>
- `"${payload.messageType === 'draftjs... | 1 |
diff --git a/docs/content/charts/PieLabels.js b/docs/content/charts/PieLabels.js @@ -9,6 +9,8 @@ import { ImportPath } from 'docs/components/ImportPath';
import { Md } from 'docs/components/Md';
import pieConfigs from './configs/PieLabel';
+const fiddleCode = 'vkbZc5Cw';
+
class PageController extends Controller {
onIn... | 0 |
diff --git a/token-metadata/0x70A63225BcaDacc4430919F0C1A4f0f5fcffBaac/metadata.json b/token-metadata/0x70A63225BcaDacc4430919F0C1A4f0f5fcffBaac/metadata.json "symbol": "VEY",
"address": "0x70A63225BcaDacc4430919F0C1A4f0f5fcffBaac",
"decimals": 4,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
}... | 3 |
diff --git a/src/comments/CommentFormEmbedded.js b/src/comments/CommentFormEmbedded.js @@ -37,6 +37,20 @@ export default class CommentFormEmbedded extends Component {
isReplayToComment: false,
};
+ componentDidMount() {
+ const { parentId, posts, comments, isReplayToComment } = this.props;
+ const content = isReplayToC... | 3 |
diff --git a/src/index.js b/src/index.js @@ -24,7 +24,7 @@ if (style.styleSheet) {
*/
const upgradeVersion = async () => {
const valid = ['etoro', 'phase0-a']
- const required = Config.isEToro ? 'etoro' : 'phase0-a'
+ const required = Config.phase > 0 && Config.env === 'production' ? 'phase1' : 'phase0-a'
const version... | 0 |
diff --git a/package.json b/package.json },
"repository": {
"type": "git",
- "url": "https://github.com/legomushroom/mojs.git"
+ "url": "https://github.com/mojs/mojs.git"
},
"bugs": {
- "url": "https://github.com/legomushroom/mojs/issues"
+ "url": "https://github.com/mojs/mojs/issues"
},
- "homepage": "https://github.c... | 4 |
diff --git a/package.json b/package.json "description": "Open Source REST API for rocket, core, capsule, pad, and launch data",
"main": "./src/app.js",
"scripts": {
- "test": "eslint \"**/*.js\" && NODE_ENV=test PORT=0 jest --silent",
+ "test": "yarn lint && NODE_ENV=test PORT=0 jest --silent",
"start": "node src/app.j... | 3 |
diff --git a/src/DevChatter.Bot.Core/ChatUserCollection.cs b/src/DevChatter.Bot.Core/ChatUserCollection.cs @@ -12,8 +12,8 @@ public class ChatUserCollection : IChatUserCollection
{
private readonly IRepository _repository;
private readonly object _userCreationLock = new object();
-
private readonly object _activeChatUs... | 1 |
diff --git a/test/jasmine/tests/legend_scroll_test.js b/test/jasmine/tests/legend_scroll_test.js @@ -326,7 +326,8 @@ describe('The legend', function() {
Plotly.relayout(gd, 'showlegend', false)
.then(function() {
Plotly.relayout(gd, 'showlegend', true);
-
+ })
+ .then(function() {
legend = getLegend();
scrollBox = getS... | 0 |
diff --git a/js/indexed-db.js b/js/indexed-db.js // TODO:
-// - version the server xhr req url
// - sync with etag
// - add "top 500" designation to data from server, add as field to db
@@ -38,7 +37,7 @@ class IndexedDBClient {
this.db = null
this.serverUpdateUrls = {
- httpse: 'http://lauren.duckduckgo.com/collect.js?... | 3 |
diff --git a/views/about.pug b/views/about.pug @@ -90,4 +90,23 @@ block content
South America, Europe & Asia-Pacific region
(#[a(href='https://www.stackpath.com/network/', rel='noopener', target='_blank') view network map]).
+ h3#sustainability.h4.my-3
+ strong 4. Sustainability
+
+ p.
+ In May 2018, we created #[a(hre... | 0 |
diff --git a/apps/messageicons/lib.js b/apps/messageicons/lib.js @@ -55,7 +55,7 @@ exports.getImage = function(msg) {
if (s=="skype") return atob("GBgBAAAAB8AAH/8AP//AP//gf8fwfwD4fgB4fjx8fj/8Pg/8PwH8P4B8P/h8Pnx+Pjx+Hhh+HwD+D8P+B//8A//8AP/4AAPgAAAA"); // icons/skype.png
if (s=="slack") return atob("GBgBAAAAAOcAAeeAAeeAA... | 1 |
diff --git a/src/partials/page-analyse.html b/src/partials/page-analyse.html {{page-contents.update}}
<span class="analyseUpdate-timestamp"></span>.
<button class="btn analyseBoard-iconBtn analyseBoard-info info-textblock" rel="{{page-contents.updateNoticeIcon.title}}">
- <img src="{{root}}assets/img/icons/info.svg" al... | 13 |
diff --git a/app/models/user/UserCurrentRegionTable.scala b/app/models/user/UserCurrentRegionTable.scala @@ -109,7 +109,7 @@ object UserCurrentRegionTable {
}
else {
// Take the least-audited difficult region
- val regionId = scala.util.Random.shuffle(regionIds.intersect(difficultRegionIds.toSet)).head
+ val regionId: ... | 1 |
diff --git a/package.json b/package.json "jsdom": "^13.0.0",
"node-fetch": "^2.3.0",
"nyc": "^15.0.0",
- "puppeteer": "^1.17.0",
+ "puppeteer-core": "*",
"standard": "^12.0.1",
"tap-spec": "^5.0.0",
"tape": "^4.9.1",
| 3 |
diff --git a/src/lib/generateUtilities.js b/src/lib/generateUtilities.js @@ -45,6 +45,7 @@ export default function(config) {
if (atRule.params === 'utilities') {
const utilities = _.flatten([
forms(options),
+ lists(options),
textSizes(options),
textWeights(options),
textFonts(options),
@@ -78,7 +79,6 @@ export default... | 5 |
diff --git a/assets/js/modules/analytics-4/components/common/PropertySelect.js b/assets/js/modules/analytics-4/components/common/PropertySelect.js @@ -208,7 +208,7 @@ export default function PropertySelect( {
'google-site-kit'
),
displayName,
- measurementIDs?.[ _id ]
+ measurementIDs?.[ _id ] || ''
) }
</Option>
) ) }... | 12 |
diff --git a/package.json b/package.json "test:js:watch": "npm run test:js -- --watch",
"test:storybook": "npm run test:js -- --testMatch '<rootDir>/.storybook/*.test.js'",
"pretest:e2e": "./bin/local-env/env-check.sh",
- "test:e2e": "WP_BASE_URL=http://localhost:9002 wp-scripts test-e2e --config=tests/e2e/jest.config.... | 1 |
diff --git a/commands/purge.js b/commands/purge.js @@ -36,14 +36,19 @@ exports.command = async (message, args, database, bot) => {
filter.users.push(util.userMentionToId(arg));
}
//purge /regex/
- else if (String(arg).match(/^\/((.* *))\/([gimsuy]*)$/)) {
- let match = String(arg).match(/^\/(.* *)\/([gimsuy]*)$/);
+ el... | 7 |
diff --git a/package.json b/package.json "key-did-provider-ed25519": "^1.1.0",
"key-did-resolver": "^1.4.0",
"metaversefile": "./packages/metaversefile",
+ "zjs": "./packages/zjs",
"openai-api": "^1.2.6",
"react": "17.0.2",
"react-dom": "17.0.2",
| 0 |
diff --git a/app/src/scripts/admin/admin.job-parameter-setup.jsx b/app/src/scripts/admin/admin.job-parameter-setup.jsx @@ -135,6 +135,14 @@ class JobParameterSetup extends React.Component {
this.setState({ error: 'Please select either hidden or required.' })
return
}
+ // cannot add participant_label
+ if (this.state.l... | 12 |
diff --git a/src/renderer/layer/tilelayer/TileLayerCanvasRenderer.js b/src/renderer/layer/tilelayer/TileLayerCanvasRenderer.js @@ -480,7 +480,7 @@ class TileLayerCanvasRenderer extends CanvasRenderer {
if (!this.checkTileInQueue(tileData, tileInfo)) {
continue;
}
- this.tileOnBoard(tileData, tileInfo);
+ this.consumeTi... | 10 |
diff --git a/packages/jaeger-ui/src/utils/tracking/README.md b/packages/jaeger-ui/src/utils/tracking/README.md -# Google Analytics (GA) Tracking In Jaeger UI
+# App Analytics
-Page-views and errors are tracked in production when a GA tracking ID is provided in the UI config and error tracking is not disabled via the UI... | 0 |
diff --git a/src/parser/spells/special.js b/src/parser/spells/special.js @@ -172,8 +172,10 @@ export function fixSpells(ddb, items) {
spell.data.actionType = "save";
break;
case "Searing Smite": {
+ if (spell.data.damage.parts.length > 1) {
spell.data.formula = spell.data.damage.parts[1][0];
spell.data.damage.parts = [... | 9 |
diff --git a/source/Table/Table.js b/source/Table/Table.js @@ -453,13 +453,15 @@ export default class Table extends PureComponent {
a11yProps['aria-describedby'] = id;
}
+ a11yProps.key = "Row" + rowIndex + "-" + "Col" + columnIndex;
+ a11yProps.className = cn('ReactVirtualized__Table__rowColumn', className);
+ a11yPro... | 7 |
diff --git a/README.md b/README.md ## Prose [](https://travis-ci.org/prose/prose)
-Prose provides a beautifully simple content authoring environment for [CMS-free websites](http://developmentseed.org/blog/2012/07/27/build-cms-free-websites/). It's a we... | 1 |
diff --git a/package-lock.json b/package-lock.json }
},
"node_modules/async": {
- "resolved": "git+ssh://git@github.com/ably-forks/async.git#76306396b3d3a25316be0170ab6483ccbaaaa097",
+ "resolved": "git+https://git@github.com/ably-forks/async.git#76306396b3d3a25316be0170ab6483ccbaaaa097",
"dev": true
},
"node_modules/a... | 14 |
diff --git a/Xeohelios' Fire Emblem Tabletop Companion/script.json b/Xeohelios' Fire Emblem Tabletop Companion/script.json {
"name": "Fire Emblem Tabletop Combat Script (Default Version)",
"script": "FETTC.js",
- "version": 1.1,
+ "version": "1.1",
"previousversions": ["1.0"],
"description": "**This is the companion sc... | 3 |
diff --git a/Source/Scene/BingMapsImageryProvider.js b/Source/Scene/BingMapsImageryProvider.js @@ -52,11 +52,7 @@ define([
* @param {Resource|String} options.url The url of the Bing Maps server hosting the imagery.
* @param {String} [options.key] The Bing Maps key for your application, which can be
* created at {@link ... | 3 |
diff --git a/app/services/dependency-resolver.js b/app/services/dependency-resolver.js @@ -4,8 +4,8 @@ import { task, timeout } from 'ember-concurrency';
const { computed, inject, RSVP, testing } = Ember;
-const EMBER_VERSIONS = ['2.12.0', '2.11.2', '2.10.2', '2.9.1', '2.8.2', '2.7.3', '2.6.2', '2.5.1', '2.4.5', '2.3.2... | 3 |
diff --git a/test/routes/v2-capsules.test.js b/test/routes/v2-capsules.test.js @@ -13,8 +13,8 @@ beforeAll((done) => {
// Dragon V2
//------------------------------------------------------------
-test('It should return Dragon data', () => {
- return request(app).get('/v2/capsules').then((response) => {
+test('It should... | 3 |
diff --git a/articles/guides/login/migrating-lock-v10-webapp.md b/articles/guides/login/migrating-lock-v10-webapp.md @@ -5,7 +5,7 @@ toc: true
---
# Migrate Web Applications using Lock 10+ to Centralized Login
-This document explains how to migrate Web Applications using Lock 10+ to centralized login. For other migrati... | 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.