code stringlengths 122 4.99k | label int64 0 14 |
|---|---|
diff --git a/src/article/editor/styles/_toc.css b/src/article/editor/styles/_toc.css font-weight: 500;
font-family: 'Avenir Next', Helvetica;
display: block;
- padding: 2px 0px;
- line-height: 30px;
+ padding: 6px 0px;
+ line-height: 20px;
position: relative;
}
.sc-toc .se-toc-entries .se-toc-entry.sm-active { color: #... | 12 |
diff --git a/sparta_main_build.go b/sparta_main_build.go @@ -261,9 +261,8 @@ func MainEx(serviceName string,
CommandLineOptions.Describe.RunE = func(cmd *cobra.Command, args []string) error {
validateErr := validate.Struct(optionsDescribe)
if nil != validateErr {
- return validateErr
+ return errors.Wrapf(validateErr, ... | 0 |
diff --git a/admin.js b/admin.js -import {resolveContractSource} from './blockchain.js';
+import {resolveContractSource, hexToWordList} from './blockchain.js';
import {accountsHost} from './constants.js';
import {uint8Array2hex} from './util.js';
@@ -21,6 +21,7 @@ const _createAccount = async () => {
method: 'POST',
})... | 0 |
diff --git a/js/whitebit.js b/js/whitebit.js @@ -192,6 +192,8 @@ module.exports = class whitebit extends Exchange {
},
'broad': {
'Given amount is less than min amount': InvalidOrder, // {"code":0,"message":"Validation failed","errors":{"amount":["Given amount is less than min amount 200000"],"total":["Total is less th... | 9 |
diff --git a/tests/e2e/config/bootstrap.js b/tests/e2e/config/bootstrap.js @@ -168,7 +168,8 @@ function observeConsoleLogging() {
text.startsWith( 'OTS parsing error:' ) ||
text.includes( 'Download the React DevTools for a better development experience' ) ||
text.includes( 'Can\'t perform a React state update on an unm... | 8 |
diff --git a/src/hooks/getSceneNavigationContext/extendSceneNavigationContext.js b/src/hooks/getSceneNavigationContext/extendSceneNavigationContext.js @@ -93,6 +93,14 @@ const collectSceneData = (scene) => {
move: wall.move,
sense: wall.sense,
})),
+ //
+ drawings: scene.data.drawings,
+ weather: scene.data.weather,
+ ... | 7 |
diff --git a/app/src/js/consts/utils.js b/app/src/js/consts/utils.js @@ -99,8 +99,7 @@ export const timeSince = (date) => {
const seconds = Math.floor((new Date() - date) / 1000);
let interval = seconds / 2592000;
if (interval > 1) {
- const nd = new Date(date);
- return `${nd.getDate()}/${nd.getMonth()}/${nd.getYear()... | 14 |
diff --git a/server/game/cardaction.js b/server/game/cardaction.js @@ -185,6 +185,10 @@ class CardAction extends BaseAbility {
return true;
}
+ if(location.includes('deck')) {
+ return false;
+ }
+
let type = this.card.getType();
if(type === 'character' || type === 'attachment') {
return (location === 'play area');
| 11 |
diff --git a/src/angular/projects/spark-core-angular/src/lib/components/sprk-accordion-item/sprk-accordion-item.component.ts b/src/angular/projects/spark-core-angular/src/lib/components/sprk-accordion-item/sprk-accordion-item.component.ts @@ -79,9 +79,9 @@ export class SparkAccordionItemComponent implements OnInit {
? ... | 3 |
diff --git a/.github/workflows/ci-app-prod.yml b/.github/workflows/ci-app-prod.yml @@ -3,8 +3,7 @@ name: Node CI for app production
on:
push:
branches:
- # - master
- - support/apply-nextjs-2
+ - master
paths:
- .github/workflows/ci-app-prod.yml
- .github/workflows/reusable-app-prod.yml
@@ -21,8 +20,7 @@ on:
- packages... | 13 |
diff --git a/packages/cx/src/ui/layout/FirstVisibleChildLayout.spec.js b/packages/cx/src/ui/layout/FirstVisibleChildLayout.spec.js @@ -6,6 +6,8 @@ import {Store} from '../../data/Store';
import renderer from 'react-test-renderer';
import assert from 'assert';
import {FirstVisibleChildLayout} from "./FirstVisibleChildLa... | 0 |
diff --git a/src/commands.js b/src/commands.js const { plugman } = require('cordova-lib');
module.exports = {
- 'install': function (cli_opts) {
+ install (cli_opts) {
if (!cli_opts.platform || !cli_opts.project || !cli_opts.plugin) {
return console.log(plugman.help());
}
@@ -35,6 +35,7 @@ module.exports = {
if (/^[\w-... | 7 |
diff --git a/token-metadata/0x7461C43bb1E96863233D72A09191008ee9217Ee8/metadata.json b/token-metadata/0x7461C43bb1E96863233D72A09191008ee9217Ee8/metadata.json "symbol": "SBX",
"address": "0x7461C43bb1E96863233D72A09191008ee9217Ee8",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/src/main/helpers.js b/src/main/helpers.js @@ -131,8 +131,8 @@ export function isValidDomain(host) {
if (host[0] === '_' || host.substr(-1) === '_') {
return false
}
- // Host cannot start or end with a '.'
- if (host[0] === '.' || host.substr(-1) === '.') {
+ // Host cannot start with a '.'
+ if (host[0] =... | 11 |
diff --git a/src/consumer/connection.spec.js b/src/consumer/connection.spec.js @@ -24,16 +24,10 @@ describe('Consumer', () => {
await createTopic({ topic: topicName })
cluster = createCluster()
- producer = createProducer({
- cluster,
- createPartitioner: createModPartitioner,
- logger: newLogger(),
- })
})
afterEach(a... | 7 |
diff --git a/src/js/components/RadioButtonGroup/__tests__/RadioButtonGroup-test.js b/src/js/components/RadioButtonGroup/__tests__/RadioButtonGroup-test.js @@ -5,7 +5,7 @@ import 'jest-axe/extend-expect';
import 'regenerator-runtime/runtime';
import { axe } from 'jest-axe';
-import { cleanup, render } from '@testing-lib... | 7 |
diff --git a/Source/Scene/ImageryLayer.js b/Source/Scene/ImageryLayer.js @@ -224,6 +224,9 @@ define([
* Possible values are {@link TextureMinificationFilter.LINEAR} (the default)
* and {@link TextureMinificationFilter.NEAREST}.
*
+ * To take effect, this property must be set immediately after adding the imagery layer.
... | 3 |
diff --git a/src/components/Eth2Articles.js b/src/components/Eth2Articles.js @@ -82,8 +82,7 @@ const benArticles = [
},
]
-const Eth2Articles = () => {
- return (
+const Eth2Articles = () => (
<Container>
<LeftColumn>
<h4>Danny Ryan (Ethereum Foundation)</h4>
@@ -95,6 +94,5 @@ const Eth2Articles = () => {
</RightColumn... | 7 |
diff --git a/app/stylesheets/builtin-pages/start.less b/app/stylesheets/builtin-pages/start.less @@ -85,7 +85,7 @@ body {
text-align: center;
background: #fff;
border: 3px solid #fff;
- border-radius: 4px;
+ border-radius: 2px;
box-shadow: 0 1px 0 rgba(0,0,0,.15);
border: 1px solid rgba(0,0,0,.1);
| 4 |
diff --git a/components/Feed/index.js b/components/Feed/index.js @@ -29,6 +29,7 @@ const query = gql`
}
documents: search(
filters: [
+ { key: "template", not: true, value: "section" }
{ key: "template", not: true, value: "format" }
{ key: "template", not: true, value: "front" }
]
| 8 |
diff --git a/app/models/user/db_service.rb b/app/models/user/db_service.rb @@ -22,7 +22,7 @@ module CartoDB
SCHEMA_GEOCODING = 'cdb'.freeze
SCHEMA_CDB_DATASERVICES_API = 'cdb_dataservices_client'.freeze
SCHEMA_AGGREGATION_TABLES = 'aggregation'.freeze
- CDB_DATASERVICES_CLIENT_VERSION = '0.17.0'.freeze
+ CDB_DATASERVIC... | 4 |
diff --git a/physx.js b/physx.js @@ -2178,6 +2178,8 @@ const physxWorker = (() => {
allocator.freeAll()
}
+ //
+
w.marchingCubes = (dims, potential, shift, scale) => {
let allocator = new Allocator()
@@ -2225,6 +2227,12 @@ const physxWorker = (() => {
}
}
+ //
+
+ w.setChunkSize = (chunkSize) => {
+ moduleInstance._set... | 0 |
diff --git a/src/controllers/botapi/broadcast.ts b/src/controllers/botapi/broadcast.ts @@ -6,17 +6,18 @@ import * as jsonUtils from '../../utils/json'
import * as socket from '../../utils/socket'
import constants from '../../constants'
import { getTribeOwnersChatByUUID } from '../../utils/tribes'
+import { sphinxLogger... | 3 |
diff --git a/src/DOM.js b/src/DOM.js @@ -1846,7 +1846,7 @@ class HTMLIFrameElement extends HTMLSrcableElement {
const browser = new GlobalContext.nativeBrowser.Browser(context, context.canvas.ownerDocument.defaultView.innerWidth, context.canvas.ownerDocument.defaultView.innerHeight, url);
this.browser = browser;
- let ... | 13 |
diff --git a/token-metadata/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/metadata.json b/token-metadata/0x322124122DF407b0d0D902cB713B3714FB2e2E1F/metadata.json "symbol": "SYFI",
"address": "0x322124122DF407b0d0D902cB713B3714FB2e2E1F",
"decimals": 9,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/client/components/cards/checklists.jade b/client/components/cards/checklists.jade @@ -82,7 +82,6 @@ template(name="editChecklistItemForm")
a.fa.fa-times-thin.js-close-inlined-form
span(title=createdAt) {{ moment createdAt }}
if canModifyCard
- if currentUser.isBoardAdmin
a.js-delete-checklist-item {{_ "del... | 11 |
diff --git a/tests/playgrounds/advanced_playground.html b/tests/playgrounds/advanced_playground.html <meta charset="utf-8">
<title>Advanced Blockly Playground</title>
<script src="../../blockly_uncompressed.js"></script>
-<script src="../../generators/javascript.js"></script>
-<script src="../../generators/javascript/l... | 1 |
diff --git a/checkfiles/checkfiles.py b/checkfiles/checkfiles.py @@ -607,7 +607,7 @@ def check_file(config, session, url, job):
upload_url = job['upload_url']
local_path = os.path.join(config['mirror'], upload_url[len('s3://'):])
- local_file_flag = False
+ is_local_bed_present = False # boolean standing for local .bed... | 10 |
diff --git a/articles/connections/social/oauth2.md b/articles/connections/social/oauth2.md @@ -12,7 +12,7 @@ The most common [identity providers](/identityproviders) are readily available o

-## The fetchUserProfile script
+## The `fetchUserPro... | 2 |
diff --git a/articles/migrations/guides/extensibility-node12.md b/articles/migrations/guides/extensibility-node12.md @@ -67,7 +67,7 @@ Changing the runtime may break your existing Rules, Hooks, and Custom Database/S
## Whitelist the new URLs
-The [Authorization Extension](/extensions/authorization), the [Delegated Admi... | 2 |
diff --git a/tests/phpunit/integration/Core/Modules/Module_Sharing_SettingsTest.php b/tests/phpunit/integration/Core/Modules/Module_Sharing_SettingsTest.php @@ -105,7 +105,6 @@ class Module_Sharing_SettingsTest extends SettingsTestCase {
),
);
$settings->set( $test_sharing_settings );
- // Use get_option() instead of $... | 2 |
diff --git a/src/util/os_utils.js b/src/util/os_utils.js @@ -458,7 +458,7 @@ function set_dns_server(servers, search_domains) {
commands_to_exec.push("sed -i 's/.*NooBaa Configured Secondary DNS Server.*/#NooBaa Configured Secondary DNS Server/' /etc/resolv.conf");
}
- if (search_domains.length) {
+ if (search_domains ... | 9 |
diff --git a/app-template/config-template.xml b/app-template/config-template.xml </plugin>
<plugin name="cordova-custom-config" spec="3.0.14" />
<plugin name="cordova-plugin-queries-schemes" spec="0.1.5" />
- <plugin name="cordova-plugin-firebase" spec="https://github.com/arnesson/cordova-plugin-firebase.git#1.0.5" />
... | 1 |
diff --git a/package.json b/package.json "name": "find-and-replace",
"main": "./lib/find",
"description": "Find and replace within buffers and across the project.",
- "version": "0.212.3",
+ "version": "0.212.4",
"license": "MIT",
"activationCommands": {
"atom-workspace": [
| 6 |
diff --git a/src/ApiGatewayWebSocket.js b/src/ApiGatewayWebSocket.js @@ -183,7 +183,7 @@ module.exports = class ApiGatewayWebSocket {
this._server.route({
method: 'POST',
path: '/',
- config: {
+ options: {
payload: {
allow: 'application/json',
output: 'data',
@@ -301,13 +301,13 @@ module.exports = class ApiGatewayWebS... | 10 |
diff --git a/token-metadata/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/metadata.json b/token-metadata/0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b/metadata.json "symbol": "TBX",
"address": "0x3A92bD396aEf82af98EbC0Aa9030D25a23B11C6b",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/tests/e2e/Services/Functions/FunctionsCustomServerTest.php b/tests/e2e/Services/Functions/FunctionsCustomServerTest.php @@ -569,7 +569,7 @@ class FunctionsCustomServerTest extends Scope
], $this->getHeaders()));
$this->assertEquals(200, $function['headers']['status-code']);
- $this->assertGreaterThan(0, $f... | 13 |
diff --git a/content/guides/references/legacy-configuration.md b/content/guides/references/legacy-configuration.md @@ -73,6 +73,7 @@ you should understand well. The default values listed here are meaningful.
| `fileServerFolder` | root project folder | Path to folder where application files will attempt to be served fr... | 13 |
diff --git a/generators/server/templates/src/main/java/package/security/jwt/TokenProvider.java.ejs b/generators/server/templates/src/main/java/package/security/jwt/TokenProvider.java.ejs @@ -31,7 +31,7 @@ import org.springframework.security.core.GrantedAuthority;
import org.springframework.security.core.authority.Simpl... | 14 |
diff --git a/articles/libraries/lock/v11/migration-v10-v11.md b/articles/libraries/lock/v11/migration-v10-v11.md @@ -7,6 +7,8 @@ toc: true
# Migrating from Lock.js v10 to v11
+This guide includes all the information you need to update your Lock 10 installation to Lock 11.
+
## Migration Steps
<%= include('../../_includ... | 0 |
diff --git a/src/components/Link.js b/src/components/Link.js @@ -4,18 +4,19 @@ import { Link as ChakraLink, useTheme } from '@chakra-ui/core';
import { Link as GatsbyLink } from 'gatsby';
function getLinkStyles(theme, variant) {
+ const linkOpacityStates = theme.links[variant].opacity || {};
return {
fontFamily: theme.... | 11 |
diff --git a/app/controllers/application.js b/app/controllers/application.js import Controller from '@ember/controller';
import { infoLinks } from 'ember-styleguide/constants/es-footer';
-import styleguideLinks from 'ember-styleguide/constants/links';
+import headerLinks from 'ember-website/utils/header-links';
import ... | 14 |
diff --git a/tests/phpunit/integration/Core/REST_API/REST_RoutesTest.php b/tests/phpunit/integration/Core/REST_API/REST_RoutesTest.php @@ -48,7 +48,6 @@ class REST_RoutesTest extends TestCase {
'/' . REST_Routes::REST_ROOT . '/core/modules/data/info',
'/' . REST_Routes::REST_ROOT . '/core/modules/data/activation',
'/' ... | 2 |
diff --git a/package.json b/package.json "homepage": "https://getstream.io/docs?language=js",
"email": "support@getstream.io",
"license": "BSD-3-Clause",
- "version": "3.19.0",
+ "version": "3.18.0",
"scripts": {
"dtslint": "dtslint types/getstream",
"test": "npm run test-unit-node",
| 13 |
diff --git a/examples/canvasTiles/canvasTiles.html b/examples/canvasTiles/canvasTiles.html 'attribution': 'Data @ OpenStreetMap contributors, ODbL'
});
- let cnv = document.createElement("canvas");
- let ctx = cnv.getContext("2d");
- cnv.width = 256;
- cnv.height = 256;
-
const tg = new CanvasTiles("Tile grid", {
visib... | 3 |
diff --git a/readme.md b/readme.md @@ -12,7 +12,7 @@ and rendering dom nodes.
## Documentation
-To get started with Imba, we recommend reading through the [official guide](http://imba.io/guide). If you just want to get going, clone [hello-world-imba](https://github.com/somebee/hello-world-imba) and follow the readme.
+... | 1 |
diff --git a/src/core/resolver.js b/src/core/resolver.js @@ -40,6 +40,15 @@ const resolver = module.exports = {
return item.replace(/^\\@/, '@');
}
+ if (_.isString(item) && _.startsWith(item, '@@')) {
+ const entity = source.find(item.substring(1));
+ const fullRenderedComponent = source.engine().render(entity.viewPat... | 11 |
diff --git a/test/jasmine/bundle_tests/mathjax_test.js b/test/jasmine/bundle_tests/mathjax_test.js @@ -73,12 +73,12 @@ describe('Test MathJax:', function() {
}
var longCats = ['aaaaaaaaa', 'bbbbbbbbb', 'cccccccc'];
- var texTitle = '$$f(x) = \\int_0^\\infty \\psi(t) dt$$';
- var texCats = ['$$\\phi$$', '$$\\nabla \\cdo... | 4 |
diff --git a/ui/util/saved-passwords.js b/ui/util/saved-passwords.js @@ -17,7 +17,13 @@ function setCookie(name, value, expirationDaysOnWeb) {
expires = `expires=${IS_WEB ? date.toUTCString() : maxExpiration};`;
}
- let cookie = `${name}=${value || ''}; ${expires} path=/; SameSite=None;`;
+ let cookie = `${name}=${valu... | 11 |
diff --git a/src/og/entity/Polyline.js b/src/og/entity/Polyline.js @@ -1608,6 +1608,31 @@ class Polyline {
//...
}
+ setColorHTML(htmlColor) {
+ let color = utils.htmlColorToRgba(htmlColor),
+ p = this._pathColors;
+
+ for (let i = 0, len = p.length; i < len; i++) {
+ let s = p[i];
+ for (let j = 0, slen = s.length; j ... | 0 |
diff --git a/source/wrapper/test/unit.js b/source/wrapper/test/unit.js @@ -6,6 +6,7 @@ const {
} = require('@airswap/utils')
const { ethers, waffle } = require('hardhat')
const { deployMockContract } = waffle
+const { ADDRESS_ZERO } = require('@airswap/constants')
const IERC20 = require('@openzeppelin/contracts/build/c... | 7 |
diff --git a/README.md b/README.md @@ -134,6 +134,7 @@ Element `hello-kitty`
set icon // on element
// default to html attribute
( value = this.getAttribute `icon` )
+ // set html attribute to new value
{ this.setAttribute (`icon`, value) }
get icon () // from element
| 12 |
diff --git a/components/datasets/form/steps/Step1.js b/components/datasets/form/steps/Step1.js @@ -171,14 +171,13 @@ class Step1 extends React.Component {
{Select}
</Field>
- {this.state.form.type === 'tabular' &&
<Field
ref={(c) => { if (c) FORM_ELEMENTS.elements.geoInfo = c; }}
onChange={value => this.props.onChange(... | 11 |
diff --git a/_pages/en/contacts.md b/_pages/en/contacts.md @@ -26,7 +26,7 @@ If you want to file a bug related to this website, you can open an issue on [Git
url: 'https://forum.italia.it/'
---
-Developers Italia is a project in collaboration between [AGID](https://www.agid.gov.it/en) and the [Digital Transformation Te... | 1 |
diff --git a/docs/specs/data-types.yaml b/docs/specs/data-types.yaml @@ -19,17 +19,18 @@ paths:
type: object
properties:
age:
- description: Person Age
+ description: Person's **Age** (age must be bold)
type: integer
fullName:
- description: Person Full name
+ description: Person's Full name
type: object
properties:
fi... | 7 |
diff --git a/src/apps.json b/src/apps.json 22
],
"headers": {
- "X-Powered-By": "^Phusion Passenger ?([\\d.]+)?\\;version:\\1",
+ "X-Powered-By": "Phusion Passenger ?([\\d.]+)?\\;version:\\1",
"Server": "Phusion Passenger ([\\d.]+)\\;version:\\1"
},
"icon": "Phusion Passenger.png",
| 7 |
diff --git a/src/mavo.js b/src/mavo.js @@ -1008,7 +1008,7 @@ _.containers = {
// mv-list without mv-list-item child
$$("[mv-list]").forEach(list => {
- if (!$("[mv-list-item]", list)) {
+ if (!$(":scope > [mv-list-item]", list)) {
if (list.children === 1 && !list.children[0].matches("[property]")) {
// A single non-Mav... | 1 |
diff --git a/apps/bwclk/app.js b/apps/bwclk/app.js @@ -28,6 +28,7 @@ for (const key in saved_settings) {
settings[key] = saved_settings[key]
}
+var lock_input = false;
/************
* Assets
@@ -189,6 +190,9 @@ menu.forEach((menuItm, x) => {
// immedeately after redraw...
item.hide();
+ // After drawing the item, we en... | 7 |
diff --git a/modules/connectivity/ParticipantConnectionStatus.js b/modules/connectivity/ParticipantConnectionStatus.js @@ -142,7 +142,7 @@ export default class ParticipantConnectionStatusHandler {
/**
* In P2P mode we don't care about any values coming from the JVB and
- * the connection status can be only active or in... | 1 |
diff --git a/gulpfile.js b/gulpfile.js @@ -29,7 +29,6 @@ var options = minimist(process.argv.slice(2), knownOptions);
const browsers = [];
let configBrowsers = options.browsers || process.env['MAPTALKS_BROWSERS'] || '';
-console.log('configBrowsers', configBrowsers);
configBrowsers.split(',').forEach(name => {
if (!nam... | 3 |
diff --git a/CHANGES.md b/CHANGES.md @@ -4,7 +4,7 @@ Change Log
### 1.43 - 2018-03-01
##### Fixes :wrench:
-* Fixed bug where AxisAlignedBoundingBox did not copy over center value when cloning an undefined result.
+* Fixed bug where AxisAlignedBoundingBox did not copy over center value when cloning an undefined result.... | 3 |
diff --git a/design-tokens/core/core.alias.yml b/design-tokens/core/core.alias.yml FONT_FAMILY_MONOSPACE: "monospace"
FONT_WEIGHT_NORMAL: 400
FONT_WEIGHT_BOLD: 700
- FONT_SIZE_BASE: "14px"
+ FONT_SIZE_BASE: "14"
# Box shadow
BOX_SHADOW_COLOR: "rgba(0, 0, 0, 0.2)"
| 13 |
diff --git a/app/api/apiConfig.js b/app/api/apiConfig.js @@ -156,7 +156,7 @@ export const settingsAPIs = {
contact: "telegram:BrianZhang"
},
{
- url: "wss://api.weaccount.cn",
+ url: "wss://api.bts.btspp.io:10100",
region: "Eastern Asia",
country: "China",
location: "Hangzhou",
| 14 |
diff --git a/src/components/manage/utils.js b/src/components/manage/utils.js @@ -269,19 +269,6 @@ export const processTier = (crowdsaleAddress, crowdsaleNum) => {
newTier.rate = (contractStore.contractType === WHITELIST_WITH_CAP) ? tokensPerETHTiers : tokensPerETHStandard
- if (crowdsaleNum === 0) {
- tierStore.emptyLi... | 2 |
diff --git a/token-metadata/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/metadata.json b/token-metadata/0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5/metadata.json "symbol": "CHESS",
"address": "0x5f75112bBB4E1aF516fBE3e21528C63DA2B6a1A5",
"decimals": 18,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED... | 3 |
diff --git a/articles/libraries/auth0js/v8/migration-guide.md b/articles/libraries/auth0js/v8/migration-guide.md @@ -7,7 +7,7 @@ description: How to migrate from auth0.js v7 to auth0.js v8
The following instructions assume you are migrating from **auth0.js v7** to **auth0.js v8**.
-The goal of this migration guide is t... | 2 |
diff --git a/generators/server/templates/src/main/java/package/aop/logging/LoggingAspect.java.ejs b/generators/server/templates/src/main/java/package/aop/logging/LoggingAspect.java.ejs @@ -88,7 +88,7 @@ public class LoggingAspect {
if (env.acceptsProfiles(Profiles.of(JHipsterConstants.SPRING_PROFILE_DEVELOPMENT))) {
lo... | 2 |
diff --git a/src/scss/grommet-core/_objects.box.scss b/src/scss/grommet-core/_objects.box.scss @mixin spaced-flex-basis ($pad-space) {
&.#{$grommet-namespace}box--pad-between-thirds {
> .#{$grommet-namespace}box--basis-1-3 {
- max-width: calc(33.33% - #{$pad-space * (2/3)});
+ // max-width: calc(33.33% - #{$pad-space *... | 13 |
diff --git a/index.html b/index.html <h4 id="gcd1ans"></h4>
</div>
-<div class="collapse" id="lns">
- <h1 style="color: white;font-family:mathfont">Ln Calculator</h2><p> </p>
- <input style="color: white; font-family:mathfont" type="text"id="ln1" placeholder="Enter the input number" class="form__field"><p> </... | 7 |
diff --git a/lib/cartodb/models/dataview/aggregation.js b/lib/cartodb/models/dataview/aggregation.js @@ -87,7 +87,7 @@ const rankedAggregationQueryTpl = ctx => `
WHERE rank < ${ctx.limit}
UNION ALL
SELECT
- 'Other' category,
+ null category,
${ctx.aggregation !== 'count' ? ctx.aggregation : 'sum'}(value) as value,
true... | 5 |
diff --git a/lib/plugins/create/create.js b/lib/plugins/create/create.js @@ -71,6 +71,16 @@ const humanReadableTemplateList = `${validTemplates
.map(template => `"${template}"`)
.join(', ')} and "${validTemplates.slice(-1)}"`;
+const handleServiceCreationError = error => {
+ if (error.code !== 'EACCESS') throw error;
+... | 9 |
diff --git a/src/js/simplemde.js b/src/js/simplemde.js @@ -1354,7 +1354,7 @@ function SimpleMDE(options) {
// Merging the promptTexts, with the given options
- options.promptTexts = promptTexts;
+ options.promptTexts = extend({}, promptTexts, options.promptTexts || {});
// Merging the blockStyles, with the given option... | 11 |
diff --git a/lib/flash.es b/lib/flash.es @@ -36,6 +36,13 @@ for (const flashPath of flashPaths) {
try {
fs.accessSync(flashPath, fs.R_OK)
app.commandLine.appendSwitch('ppapi-flash-path', flashPath)
+ let flashVersion = '27.0.0.187'
+ try {
+ flashVersion = require(path.join(path.dirname(flashPath), 'manifest.json')).ve... | 12 |
diff --git a/assets/js/modules/analytics/datastore/properties.js b/assets/js/modules/analytics/datastore/properties.js @@ -388,7 +388,7 @@ export const reducer = ( state, { type, payload } ) => {
export const resolvers = {
*getProperties( accountID ) {
if ( ! isValidAccountID( accountID ) ) {
- return undefined;
+ retu... | 2 |
diff --git a/src/server/node_services/nodes_monitor.js b/src/server/node_services/nodes_monitor.js @@ -2280,13 +2280,6 @@ class NodesMonitor extends EventEmitter {
_consolidate_host(host_nodes) {
host_nodes.forEach(item => this._update_status(item));
- host_nodes = host_nodes.filter(item => {
- if (item.node.node_type ... | 2 |
diff --git a/README.md b/README.md @@ -83,7 +83,9 @@ GET https://api.spacexdata.com/v1/launches/latest
See the [Contribution](https://github.com/r-spacex/SpaceX-API/blob/master/CONTRIBUTING.md) guide for detailed steps
## Technical Details
-* Uses [Travis CI](https://travis-ci.org/) for testing + deployment
+* API is u... | 3 |
diff --git a/layouts/_default/baseof.html b/layouts/_default/baseof.html </button>
</div>
<img src="" alt="" class="img-fluid">
- <div class="modal-body p-2">
+ <div class="modal-body p-3">
<div class="content"></div>
</div>
</div>
| 1 |
diff --git a/package.json b/package.json "Orteil"
],
"scripts": {
- "copy-file": "cp dist/CookieMonster.js CookieMonster.js",
"eslint-src": "eslint src test",
- "build": "run-s eslint-src pack-prod remove-comment copy-file test",
+ "build": "run-s eslint-src pack-prod remove-comment test",
"build-test": "run-s pack-dev... | 2 |
diff --git a/app/controllers/sessions_controller.rb b/app/controllers/sessions_controller.rb @@ -105,7 +105,7 @@ class SessionsController < ApplicationController
saml_email = warden.env['warden.options'][:saml_email]
username = CartoDB::UserAccountCreator.email_to_username(saml_email)
- unique_username = Carto::Usernam... | 4 |
diff --git a/src/simplebar.js b/src/simplebar.js @@ -69,6 +69,8 @@ export default class SimpleBar {
mutations.forEach(mutation => {
Array.from(mutation.addedNodes).forEach(addedNode => {
if (addedNode.nodeType === 1) {
+ if (addedNode.SimpleBar) return;
+
if (addedNode.hasAttribute('data-simplebar')) {
new SimpleBar(ad... | 1 |
diff --git a/src/commands/Rooms/Create.js b/src/commands/Rooms/Create.js @@ -94,7 +94,7 @@ class Create extends Command {
const voiceChannel = await message.guild.createChannel(name, 'voice');
// set up listener to delete channels if inactive for more than 5 minutes
// set up overwrites
- this.setOverwrites(textChannel... | 11 |
diff --git a/lib/Backend/BackwardPass.cpp b/lib/Backend/BackwardPass.cpp @@ -2979,7 +2979,7 @@ BackwardPass::ProcessBlock(BasicBlock * block)
break;
case IR::OpndKind::OpndKindReg:
// If it's not type-specialized, we may dereference it.
- if (!(opnd->GetValueType().IsNotObject()))
+ if (!(opnd->GetValueType().IsNotObje... | 8 |
diff --git a/src/commands/Settings/SetPing.js b/src/commands/Settings/SetPing.js @@ -24,7 +24,7 @@ class SetPing extends Command {
this.messagemanager.reply(message, 'Operator, you can\'t do that privately, it\'s the same as directly messaging you anyway!');
} else if (match) {
const trackables = trackFunctions.trackab... | 2 |
diff --git a/lib/assets/core/javascripts/cartodb3/editor/layers/layer-content-views/analyses/analyses-view.js b/lib/assets/core/javascripts/cartodb3/editor/layers/layer-content-views/analyses/analyses-view.js @@ -65,25 +65,6 @@ module.exports = CoreView.extend({
var self = this;
var infoboxSstates = [
{
- state: 'geore... | 2 |
diff --git a/src/middleware/index.js b/src/middleware/index.js @@ -69,7 +69,7 @@ const analyticsMiddleware = store => next => action => {
timestamp: new Date(),
account_id: wallet.accountId
})
- mixpanel.people.set_once({
+ mixpanel.people.set({
network_id: networkId,
stake: 0
})
| 1 |
diff --git a/sirepo/sim_data/flash.py b/sirepo/sim_data/flash.py @@ -90,6 +90,8 @@ class SimData(sirepo.sim_data.SimDataBase):
if v == '1':
c.append(f'{k}=TRUE')
continue
+ if k not in s.model.setupArguments:
+ continue
t = s.model.setupArguments[k][1]
if t == 'SetupArgumentDimension':
# always include the setup dimens... | 8 |
diff --git a/platform/login/src/main/resources/org/apache/sling/auth/form/impl/custom_login.html b/platform/login/src/main/resources/org/apache/sling/auth/form/impl/custom_login.html <!--suppress CssUnknownTarget -->
<div class="login-image"></div>
<div class="login-form-wrapper">
- <form id="loginform" method="POST" a... | 10 |
diff --git a/app/OAuthManager.js b/app/OAuthManager.js @@ -57,7 +57,7 @@ class OAuthManager {
const y = screenBounds.y + ((screenBounds.height - 580) / 2);
const window = new BrowserWindow({
- width: constants.WINDOW_WIDTH,
+ width: 380,
height: constants.WINDOW_HEIGHT,
x,
y,
| 14 |
diff --git a/lib/cartodb/models/dataview/aggregation.js b/lib/cartodb/models/dataview/aggregation.js -var _ = require('underscore');
var BaseWidget = require('./base');
var debug = require('debug')('windshaft:widget:aggregation');
@@ -153,11 +152,13 @@ const TYPE = 'aggregation';
}
*/
function Aggregation(query, option... | 14 |
diff --git a/token-metadata/0x7533D63A2558965472398Ef473908e1320520AE2/metadata.json b/token-metadata/0x7533D63A2558965472398Ef473908e1320520AE2/metadata.json "symbol": "INTX",
"address": "0x7533D63A2558965472398Ef473908e1320520AE2",
"decimals": 9,
- "dharmaVerificationStatus": {
"dharmaVerificationStatus": "VERIFIED"
... | 3 |
diff --git a/generators/server/templates/src/main/java/package/config/CacheConfiguration.java.ejs b/generators/server/templates/src/main/java/package/config/CacheConfiguration.java.ejs @@ -396,20 +396,21 @@ public class CacheConfiguration<% if (cacheProvider === 'hazelcast') { %> implem
if (this.registration == null) {... | 3 |
diff --git a/tests/mocha-reporter.js b/tests/mocha-reporter.js @@ -24,7 +24,7 @@ const { join } = require('path');
const os = require('os');
const Spec = require('mocha/lib/reporters/spec');
const Runner = require('mocha/lib/runner');
-const { mkdirsSync, removeSync } = require('fs-extra');
+const { ensureDirSync, remo... | 4 |
diff --git a/generators/server/templates/src/test/java/package/web/rest/AuditResourceIntTest.java.ejs b/generators/server/templates/src/test/java/package/web/rest/AuditResourceIntTest.java.ejs @@ -176,11 +176,11 @@ public class AuditResourceIntTest {
public void testPersistentAuditEventEquals() throws Exception {
TestU... | 2 |
diff --git a/src/js/modules/validate.js b/src/js/modules/validate.js @@ -203,7 +203,7 @@ Validate.prototype.validators = {
//must have a value
required:function(cell, value, parameters){
- return value !== "" & value !== null && typeof value !== "undefined";
+ return value !== "" && value !== null && typeof value !== "... | 14 |
diff --git a/docs/clients.md b/docs/clients.md @@ -10,7 +10,7 @@ NOTE: Clients are grouped by API version(s) supported
|:---|:---|:---|:---|
| Oddity | .NET | Tearth | [GitHub](https://github.com/Tearth/Oddity) |
| SpaceX-Async-Wrapper | Python | Ryu JuHeon | [GitHub](https://github.com/SaidBySolo/SpaceX-Async-Wrapper)... | 3 |
diff --git a/src/mermaidAPI.js b/src/mermaidAPI.js @@ -307,6 +307,9 @@ const render = function(id, _txt, cb, container) {
)} !important; }`;
} else {
// console.log('classes[className].styles', classes[className].styles, cnf.htmlLabels);
+ userStyles += `\n.${className} path { ${classes[className].styles.join(
+ ' !imp... | 9 |
diff --git a/CHANGELOG.md b/CHANGELOG.md @@ -10,6 +10,13 @@ https://github.com/plotly/plotly.js/compare/vX.Y.Z...master
where X.Y.Z is the semver of most recent plotly.js release.
+## [1.52.1] -- 2020-01-13
+
+### Fixed
+- Fix handling of `geo.visible` false edge case in order to
+ override `template.layout.geo.show*` ... | 3 |
diff --git a/checkfiles/checkfiles.py b/checkfiles/checkfiles.py @@ -981,7 +981,7 @@ def run(out, err, url, username, password, encValData, mirror, search_query, fil
except multiprocessing.NotImplmentedError:
nprocesses = 1
- version = '1.16'
+ version = '1.17'
try:
ip_output = subprocess.check_output(
| 3 |
diff --git a/app/containers/NetworkClient/sagas/fetchers.js b/app/containers/NetworkClient/sagas/fetchers.js @@ -24,16 +24,17 @@ import {
export function* fetchNetworks(filter) {
let defaultNetwork = 'eos'
let defaultType = 'mainnet'
- if(filter.has('network')){
- defaultNetwork = filter.get('network')
-
- }else if(fil... | 0 |
diff --git a/packages/project-disaster-trail/src/components/Game/Orb.js b/packages/project-disaster-trail/src/components/Game/Orb.js @@ -67,7 +67,7 @@ class Orb extends Component {
window.cancelAnimationFrame(animationFrame);
clearTimeout(pressTimeout);
/* We keep setState() in a conditional in case of a mouseLeave whe... | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.